-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (44 loc) · 1.42 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
<!DOCTYPE html>
<head>
<title>When?</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="skeleton.css">
<link rel="stylesheet" type="text/css" href="tagify.css">
<link rel="stylesheet" type="text/css" href="custom.css">
</head>
<body>
<div class="container">
<div class="row main">
<div class="one-half column">
<section>
<h4><a id="link">The Deets</a></h4>
<div id="deets"></div>
</section>
</div>
<div id="controls" class="one-half column">
<div class="edit">
<section>
<h4>When</h4>
<input type="datetime-local" id="when"></input>
<button id="resetWhen">Reset to now</button>
</section>
<section>
<h4>Where</h4>
<input type="tags" id="where"></input>
<button id="resetWhere">Reset to local</button>
</section>
</div>
<div class="noedit">
<button id="edit">Edit</button>
<button id="new">New</button>
</div>
</div>
</div>
</div>
</body>
<script src="moment.js"></script>
<script src="moment-timezone-with-data-10-year-range.js"></script>
<script src="tagify.min.js"></script>
<script src="script.js"></script>