-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·68 lines (64 loc) · 2.7 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
<!doctype html>
<html lang="en" data-framework="balloonsjs">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>BalloonsJS • TodoMVC</title>
<link rel="stylesheet" href="bower_components/todomvc-common/base.css">
<style>
.heart {
font-style: normal;
font-weight: 500;
color: #c0392b;
}
</style>
</head>
<body>
<section id="todoapp">
<header id="header">
<h1>todos</h1>
<input id="new-todo" placeholder="What needs to be done?" autofocus>
</header>
<section id="main">
<input id="toggle-all" type="checkbox" hidden>
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list"></ul>
</section>
<footer id="footer" hidden>
<span id="todo-count"></span>
<!--ul id="filters">
<li>
<a id="all" href="#/">All</a>
</li>
<li>
<a id="active" href="#/active">Active</a>
</li>
<li>
<a id="completed" href="#/completed">Completed</a>
</li>
</ul-->
<button id="clear-completed" hidden>Clear completed (<span id="completed-count"></span>)</button>
</footer>
</section>
<footer id="info">
<!--p>Double-click to edit a todo</p-->
<p>Created by <a href="http://twitter.com/pazguille">Guille Paz</a> with <i class="heart">❤</i></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a> (Coming soon)</p>
</footer>
<a href="https://github.com/balloonsjs/todomvc-example"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" width="149" height="149" alt="Fork me on GitHub"></a>
<script id="view" type="text/template" hidden>
<li data-task=":{id}" class=":{status}">
<div class="view">
<input class="toggle" type="checkbox" :{checked}>
<label>:{text}</label>
<button class="destroy"></button>
</div>
</li>
</script>
<!--script src="bower_components/todomvc-common/base.js"></script-->
<script src="js/Q.min.js"></script>
<script src="js/Templit.js"></script>
<script src="js/model.js"></script>
<script src="js/presenter.js"></script>
</body>
</html>