-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·41 lines (36 loc) · 1.23 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>ToDo App built with AmplifyJS</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/libs/modernizr-2.5.3.min.js"></script>
</head>
<body>
<header>
<h1>ToDo List built with AmplifyJS</h1>
</header>
<div id="main">
<button>Add Task</button>
<div id="tasks"></div>
<div id="new">
<input type="text"> <button>Add</button>
</div>
</div>
<script src="js/libs/jquery-1.7.1.min.js"></script>
<script src="js/libs/handlebars.js"></script>
<script src="js/libs/amplify.min.js"></script>
<script src="js/libs/jquery.mockJSON.js"></script>
<script src="js/amplify.request.definitions.mock.js"></script>
<script src="js/amplify.subscriptions.js"></script>
<script src="js/script.js"></script>
<script id="createTemplate" type="text/x-handlebars-template">
<div>
<input type="checkbox"> {{task}}
</div>
</script>
</body>
</html>