-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (64 loc) · 2.01 KB
/
index.html
File metadata and controls
66 lines (64 loc) · 2.01 KB
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
<!DOCTYPE html>
<html lang="en" data-framework="3Flight">
<head>
<meta charset="utf-8">
<title>Todo list • FiberJS</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<style type="text/css">
#todo-list li todo.completed label {
color: #d9d9d9;
text-decoration: line-through;
}
#todo-list li todo.editing .edit {
display: block;
width: 506px;
padding: 13px 17px 12px 17px;
margin: 0 0 0 43px;
}
#todo-list li todo.editing label {
display: none;
}
#todo-list li:hover .destroy {
display: block;
cursor: pointer;
}
</style>
</head>
<body>
<section id="todoapp">
<header id="header">
<h1>todos</h1>
<input id="new-todo" placeholder="What needs to be done?"
autofocus autocomplete="off">
</header>
<section id="main">
<input id="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list"></ul>
</section>
<footer id="footer">
<span id="todo-count">
<strong>0</strong> items left
</span>
<ul id="filters">
<li>
<a href="#all" id="select-all" class="selected">All</a>
</li>
<li>
<a href="#active" id="select-active">Active</a>
</li>
<li>
<a href="#completed" id="select-completed">Completed</a>
</li>
</ul>
</footer>
</section>
<footer id="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://github.com/jsbuzz">Matyas Buczko</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script src="bundle.js"></script>
</body>
</html>