-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.27 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Yet Another To Do</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="app/css/main.css">
</head>
<body>
<div class="ToDo">
<h1 class="ToDo-title">Yet Another To Do</h1>
<div class="ToDo-controls">
<input class="ToDo-textfield" type="textfield" data-target="add-input"><button class="ToDo-button" data-target="add-button">Add</button>
</div>
<p>Drag and drop to re-order and complete tasks!</p>
<div class="ToDo-alert is-hidden" data-target="alert"></div>
<h2 class="ToDo-subtitle">To Do</h2>
<ul class="ToDo-list ToDo-list--todo" data-target="todo-list"></ul>
<h2 class="ToDo-subtitle">Done</h2>
<ul class="ToDo-list ToDo-list--done" data-target="done-list"></ul>
</div>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('app/js/app.js');
</script>
</body>
</html>