forked from tbranyen/backbone-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (36 loc) · 1.18 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
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/assets/css/style.css">
<title>Backbone Boilerplate</title>
</head>
<body>
<!-- Main container -->
<div role="main" id="main"></div>
<!--
Using the build tool? If yes, delete the following uncommented scripts and read
the comments starting on line 29.
-->
<!-- Libraries -->
<script src="/assets/js/libs/jquery.js"></script>
<script src="/assets/js/libs/underscore.js"></script>
<script src="/assets/js/libs/backbone.js"></script>
<!-- Application -->
<script src="/app/namespace.js"></script>
<script src="/app/modules/example.js"></script>
<script src="/app/index.js"></script>
<!--
If using the build tool you can uncomment the following lines and use
these instead. They will toggle based on if you are using debug or
release.
-->
<!--
<script src="/assets/js/libs.js"></script>
<script src="/assets/js/templates.js"></script>
<script src="/assets/js/app.js"></script>
-->
</body>
</html>