-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
39 lines (30 loc) · 1.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en" manifest="application.appcache">
<head>
<meta charset="utf-8">
<title>Baseline Garden App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="css/app.css" rel="stylesheet">
<link href="/dashboard/_design/dashboard/_rewrite/_topbar.css" rel="stylesheet">
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body data-spy="scroll" data-target=".subnav" data-offset="50">
<div class="main">
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="jam/require.js"></script>
<script>
require(['js/app', 'domReady', 'jquery'], function (app, domReady) {
// the topbar needed jquery to be loaded.
require(['/dashboard/_design/dashboard/_rewrite/static/js/topbar.js'], function(){});
app.init();
domReady(app.on_dom_ready);
});
</script>
</body>
</html>