-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
executable file
·44 lines (34 loc) · 1.03 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
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<title>Todo App - GAE - Backbone - RequireJs - Ron Reiter</title>
<link rel="stylesheet" href="css/todos.css">
<script data-main="js/main" src="js/libs/require/require.js"></script>
</head>
<body>
<div id="todoapp">
<div class="title">
<h1>Todos</h1>
</div>
<div class="content">
<div id="create-todo">
<input id="new-todo" placeholder="What needs to be done?" type="text" />
<span class="ui-tooltip-top" style="display:none;">Press Enter to save this task</span>
</div>
<div id="todos">
<ul id="todo-list"></ul>
</div>
<div id="todo-stats"></div>
</div>
</div>
<div id="credits">
<p>REST example by
<a href="http://ronreiter.com">Ron Reiter</a>.
<p>Modularized by
<a href="http://backbonetutorials.com">Thomas Davis</a>.
Originally by
<a href="http://jgn.me/">Jérôme Gravel-Niquet</a>.
</p>
</div>
</body>
</html>