-
Notifications
You must be signed in to change notification settings - Fork 1
/
todo.html
31 lines (31 loc) · 1.02 KB
/
todo.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
<html>
<head>
<link rel="stylesheet" href="todo.css" type="text/css" media="screen" />
<script type="text/javascript" src="vendor/jquery-1.9.0.js"></script>
<script type="text/javascript" src="vendor/underscore.js"></script>
<script type="text/javascript">
var Underscore = _.noConflict();
</script>
<script name="todos" class="jst" type="text/plain">
<ul>
<% _(items).each(function(item) { %>
<li data-todo-id="<%= item.id %>">
<input type="checkbox" <%= item.checked ? "checked" : "" %> />
<span>
<%= item.title %>
</span>
</li>
<% }); %>
</ul>
</script>
<script type="text/javascript" src="todo.js"></script>
</head>
<body>
<label>Todo</label>
<div id="todo">
</div>
<label>Done</label>
<div id="done">
</div>
</body>
</html>