-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
executable file
·60 lines (46 loc) · 1.72 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Best Todo-List Ever</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- New Item Toast -->
<div id="toast_new" class="row" style="position: absolute; display: none;">
<div class="span8 offset1"><div class="alert alert-info toast_text"></div></div>
</div>
<div class="row">
<div class="span8 offset1">
<div class="well" id="todo_list">
<h1>Best Todo-List Ever</h1>
<!-- Input Box / Button -->
<div>
<div class="input-prepend input-append">
<span class="add-on"><i class="icon-bullhorn"></i></span><input type="text" class="span6 new_todo_text" placeholder="Type Your Todo Here..."></input><button class="btn btn-success add_todo"><i class="icon-plus-sign icon-white"></i> Add</button>
</div>
<!--
*** Uncomment for step 2!
<div id="progress" class="btn btn-success"><span class="completed">0</span> / <span class="total">0</span></div>
-->
</div>
<ul class="todo_items">
<ul>
</div><!-- End of #todo_list -->
</div>
</div>
<!-- underscore template for Todo Item -->
<script id="template_todo_item" type="text">
<li class="well">
<i class="icon-check icon-large"></i> <span><%= text %></span> <i class="icon-remove icon-large"></i>
</li>
</script>
<script src="lib/jquery-1.7.2.js"></script>
<script src="lib/underscore.js"></script>
<script src="lib/backbone-events.js"></script>
<script src="src/app.js"></script>
</body>
</html>