-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (62 loc) · 2.32 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
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<title>Geodate Clock</title>
<link href="/node_modules/normalize.css/normalize.css" rel="stylesheet">
<link href="/main.css" rel="stylesheet">
</head>
<body>
<div id="sky"></div>
<div id="sunrise"></div>
<div id="sunset"></div>
<div id="sun"></div>
<div id="time">
<span id="human">
<span class="extra"><code id="century">HH</code>:</span><code id="year">YY</code>:<code id="month">MM</code>:<code id="day">DD</code>:<code id="centiday">CC</code>:<code id="dimiday">BB</code><span class="extra">:<code id="microday">UU</code></span>
</span>
<span id="machine">
<code id="timestamp"></code>
</span>
<span id="legacy">
<code id="legacy-date" class="extra"></code>
<code id="legacy-time"></code>
</span>
</div>
<aside id="menu">
<div id="menu-button" class="btn" aria-label="menu">
<span class="hamburger-outer">
<span class="hamburger-inner"></span>
</span>
</div>
<div id="menu-content">
<div id="geolocation">
<div>latitude: <code id="latitude">LAT</code></div>
<div>longitude: <code id="longitude">LON</code></div>
</div>
<div id="ephemeris">
<div>sunrise: <code id="sunrise-time">CC:BB</code></div>
<div>sunset: <code id="sunset-time">CC:BB</code></div>
</div>
<div id="settings">
<div>format: <code id="settings-format" class="btn">human</code></div>
<div>clock: <code id="settings-clock" class="btn">full</code></div>
<div>epoch: <code id="settings-epoch" class="btn">gregorian</code></div>
</div>
<div id="credits">
<div>visit: <code><a href="https://geodate.org">geodate.org</a></code></div>
</div>
</div>
</aside>
<div id="alert">
<noscript>
<hr style="display:none">
JavaScript must be enabled to display the clock in real time.
Read the <a href="https://geodate.org">geodate specification</a> to learn more about this project.
</noscript>
</div>
<script src="/build/bundle.js"></script>
</body>
</html>