-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
124 lines (123 loc) · 4.46 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<title>timers</title>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- Intl shim for safari-->
<script>
if (!window.Intl || !window.Intl.DateTimeFormat) {
(function(script) {
script.src = 'https://cdn.polyfill.io/v1/polyfill.min.js?features=Intl.~locale.en';
document.write(script.outerHTML);
})(document.createElement('script'));
}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-11592827-10', 'auto');
ga('send', 'pageview');
</script>
<script async defer src="script.js"></script>
<script async defer src="data.js"></script>
</head>
<body>
<nav>
<ul>
<li data-target="mining"><a href="javascript: void 0;">Mining</a></li>
<li data-target="botany"><a href="javascript: void 0;">Botany</a></li>
<li data-target="fishing"><a href="javascript: void 0;">Fishing</a></li>
</ul>
</nav>
<section class="ads">
<div>Support this site!</div>
<div class="beg">
Please consider unblocking ads. It doesn't cost anything to see them,
but they help pay for the site you're using.
<br/>
I promise that the ads will never be flashy or get in the way of the
content you're after. <br/> Thank you.
</div>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- timers.link -->
<ins class="adsbygoogle"
style="display:inline-block;width:160px;height:600px"
data-ad-client="ca-pub-3568449428343735"
data-ad-slot="7254219794"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<div>* Advertisement *</div>
</section>
<a href="https://github.com/ddumont/timers">
<img class="github"
src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67"
alt="Fork me on GitHub"
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png">
</a>
<main>
<section class="clock">
<dl>
<dt class="local">Local Time</dt>
<dd class="time local"></dd>
<dt class="game">Eorzea Time</dt>
<dd class="time game"></dd>
</dl>
</section>
<section class="active">
<h1>Watch</h1>
<label class="notifications">
<input type="checkbox"></input>use notifications
</label>
<ol></ol>
</section>
<section class="mining" data-sectionid="0">
<h1><a href="javascript: void 0;">Mining</a></h1>
<ol></ol>
</section>
<section class="botany" data-sectionid="1">
<h1><a href="javascript: void 0;">Botany</a></h1>
<ol></ol>
</section>
<section class="fishing" data-sectionid="2">
<h1><a href="javascript: void 0;">Fishing</a></h1>
<ol></ol>
</section>
</main>
<main class="unsupported-message">
You browser is missing features that this site requires. <br/>
Please download a more modern browser:
<a href="https://www.google.com/chrome/">Chrome</a> |
<a href="https://www.mozilla.org/en-US/firefox/new/">Firefox</a>.
</main>
</body>
<template class="mining row">
<li>
<span class="type">M</span>
<span class="time"></span>
<span class="slot"></span>
<span class="name"></span>
<span class="location"></span>
</li>
</template>
<template class="botany row">
<li>
<span class="type">B</span>
<span class="time"></span>
<span class="slot" title="slot"></span>
<span class="name"></span>
<span class="location"></span>
</li>
</template>
<template class="fishing row">
<li>
<span class="type">F</span>
<span class="time"></span>
<span class="name"></span>
<span class="location"></span>
</li>
</template>
</html>