forked from addyosmani/largescale-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (50 loc) · 1.56 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Todo example</title>
<link rel="stylesheet" href="css/todo.css" />
</head>
<body>
<div id="main">
<div class="todo-headline">
<div id="todo-caption">
Todos
</div>
<div id="todo-counter">
<div id="count">0</div>
</div>
</div>
<div id="todo-entry">
<p> </p>
<input id="todo-field" type="text" placeholder="Enter some text for this entry"/>
<button class="btn">Add</button>
</div>
<div id="validate"></div>
<div id="error">
<div id="alert">
</div>
</div>
<div id="todo-list">
<ul></ul>
</div>
</div>
<div id="credits">
By
Addy Osmani, based on prior concepts<br>discussed by
N.Zakas, A.Burgess and others.
</div>
<!-- uncomment the set of libraries and core you would like to use -->
<!--
<script src="js/libs/dojo.js"></script>
<script src="js/application_core/dojo-core.js"></script>
-->
<script src="js/main.js"></script>
<script src="js/utils/utils.js"></script>
<script src="js/libs/jquery.js"></script>
<script src="js/application_core/jquery-core.js"></script>
<!-- aura base, facade and modules -->
<script src="js/sandbox/facade.js"></script>
<script src="js/modules/modules.js"></script>
</body>
</html>