forked from dzrw/Forge-Bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (23 loc) · 798 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/demo.css">
<script type="text/javascript" src="js/lib/zepto.min.js"></script>
<script type="text/javascript" src="js/lib/underscore-min.js"></script>
<script type="text/javascript" src="js/lib/backbone-min.js"></script>
<script type="text/javascript" src="js/demo.js"></script>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/models.js"></script>
<script type="text/javascript" src="js/routes.js"></script>
<script type="text/javascript" src="js/views.js"></script>
<script type="text/javascript">
if (!$){$ = Zepto}; //zepto fix
$(Demo.init);
</script>
</head>
<body>
<div id="content">
</div>
</body>
</html>