summaryrefslogtreecommitdiffstats
path: root/_site/examples/todo-app/index.html
blob: 9a509d036a87ed6199cea30a3c3866576cead2ba (plain)
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
<!doctype html>
<html lang="en">
<head>
	<title>Todo App - Backbone - RequireJs - Thomas Davis</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>Modularized by
        <a href="http://backbonetutorials.com">Thomas Davis</a>.
        Originally by 
      <a href="http://jgn.me/">J&eacute;r&ocirc;me Gravel-Niquet</a>. 
      </p>
    </div>

</body>
</html>