Files
owl/web/index.html
T

39 lines
1.0 KiB
HTML
Raw Normal View History

2019-01-16 13:19:58 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
2019-03-01 15:00:36 +01:00
<title>Odoo</title>
2019-02-03 14:14:09 +01:00
<link rel="icon" href="data:,">
<!-- Bootstrap... This sucks. -->
2019-02-14 09:23:09 +01:00
<script src="/static/libs/jquery/jquery-3.3.1.slim.min.js"></script>
<script src="/static/libs/popper/popper.min.js"></script>
<link rel="stylesheet" href="/static/libs/bootstrap/bootstrap.min.css">
<script src="/static/libs/bootstrap/bootstrap.min.js"></script>
2019-02-03 14:14:09 +01:00
<!-- Font awesome -->
<link rel="stylesheet" href="/static/libs/fontawesome/css/all.min.css">
2019-02-03 14:14:09 +01:00
<!-- AMD module system -->
2019-02-02 10:44:04 +01:00
<script src="/static/libs/almond/almond.js"></script>
2019-02-03 14:14:09 +01:00
<!-- Application JS/CSS -->
2019-01-22 19:25:12 +01:00
<script src="/main.js"></script>
<link rel="stylesheet" href="/app.css">
2019-02-03 14:14:09 +01:00
2019-02-06 11:13:25 +01:00
<script src="/demo_data.js"></script>
2019-01-16 13:19:58 +01:00
<script>
2019-02-03 14:14:09 +01:00
window.odoo = {};
2019-02-06 11:13:25 +01:00
// we add demo data here
window.odoo.menus = demoData.menus;
// this will start the main.ts code, which creates the web client
2019-01-16 13:19:58 +01:00
require('main');
</script>
2019-02-06 11:13:25 +01:00
2019-01-16 13:19:58 +01:00
</head>
<body>
</body>
</html>