-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtodo_mvc.html
More file actions
27 lines (27 loc) · 918 Bytes
/
todo_mvc.html
File metadata and controls
27 lines (27 loc) · 918 Bytes
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
<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 class="jst" type="text/html" name="todos">
<ul>
<% _(items).each(function(item) { %>
<li>
<input type="checkbox" <%= item.checked ? "checked" : "" %> />
<span>
<%= item.title %>
</span>
</li>
<% }); %>
</ul>
</script>
<script type="text/javascript" src="todo_mvc.js"></script>
</head>
<body>
<ul id="todos">
</ul>
</body>
</html>