-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (73 loc) · 2.15 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en" data-framework="react">
<head>
<meta charset="utf-8">
<title>My Todo App</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
<style>
.new-todo {
padding: 16px;
}
</style>
</head>
<body>
<section class="todoapp">
<div>
<!-- <header class="header">
<h1>My Todo App</h1>
<input class="new-todo" placeholder="What needs to be done?" autofocus />
</header> -->
<section class="main">
<ul class="todo-list">
<!-- <li class="todo-item">
<div class="view">
<input class="toggle" type="checkbox" />
<label class="todo-title">
Todo 1
</label>
<button class="destroy" />
</div>
<input class="edit" />
</li>
<li class="todo-item completed">
<div class="view">
<input class="toggle" type="checkbox" checked />
<label class="todo-title">
Todo 2
</label>
<button class="destroy" />
</div>
<input class="edit" />
</li>
<li class="todo-item editing">
<div class="view">
<input class="toggle" type="checkbox" />
<label class="todo-title">
Todo 3
</label>
<button class="destroy" />
</div>
<input class="edit" />
</li> -->
</ul>
</section>
<!-- <footer class="footer">
<span class="todo-count">
<strong>4</strong> todos left
</span>
<button class="clear-completed">
Clear completed
</button>
</footer> -->
</div>
</section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://github.com/petehunt/">petehunt</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script src="node_modules/todomvc-common/base.js"></script>
<script src="./ts/index.ts"></script>
</body>
</html>