-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (39 loc) · 1.16 KB
/
index.html
File metadata and controls
46 lines (39 loc) · 1.16 KB
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
45
46
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>TODO backbone</title>
<link rel="stylesheet" type="text/css" href="semantic/dist/semantic.css">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="app">
<div class="ui fixed inverted menu">
<div class="ui container">
<a href="#" class="header item">
<i class="icon tasks"></i>
Todo List in Backbone
</a>
<a href="#" class="header right floated item">
Total items: <span class="totalItems"></span>
</a>
</div>
</div>
<div class="ui two column centered grid">
<div class="column">
<main>
<div class="myList"></div>
</main>
</div>
</div>
</div>
<script src="./libs/jquery/dist/jquery.js"></script>
<script src="./libs/underscore/underscore-min.js"></script>
<script src="./libs/backbone/backbone.js"></script>
<script src="./libs/backbone-localstorage/backbone-localstorage.js"></script>
<script src="libs/requirejs/require.js"></script>
<script>
require(['./app/app']);
</script>
</body>
</html>