-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (34 loc) · 1.2 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
<!doctype html>
<html>
<head>
<!-- TEMPLATES -->
<script type="text/x-handlebars-template" id="note-template">
<span class="edit">edit</span>
<span class="delete">delete</span>
<span>{{content}}</span>
<span class="done">done {{completed}}</span>
</script>
<script type="text/x-handlebars-template" id="note-list-template">
<ul>
<li>
<input id="new-note" /><button id="add-note">Add Note</button>
</li>
</ul>
</script>
<script type="text/x-handlebars-template" id="note-edit-template">
<input id="edit-note" value="{{content}}" /><button id="note-save">Save</button>
</script>
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<script src="lib/jquery.js" type="text/javascript"></script>
<script src="lib/underscore.js" type="text/javascript"></script>
<script src="lib/backbone.js" type="text/javascript"></script>
<script src="lib/handlebars.js" type="text/javascript"></script>
<script src="src/notes.js" type="text/javascript"></script>
</head>
<body>
<div id="note-list">
</div>
<div id="dialog">
</div>
</body>
</html>