-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
64 lines (56 loc) · 2.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Guild Wars 2 Timer</title>
<link href="bootstrap.min.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="index.js"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="page-header" id="header">
<h1 id="header-title"></h1>
<p class="lead" id="header-subtitle"></p>
</div>
<div class="row" id="navbar">
<div class="col-sm-10"><a href="#note" id="nav-note"></a></div>
<div class="col-sm-2"><select id="lang-select" class="form-control"></select></div>
</div>
<div id="table-worldboss">
<div class="row table-header">
<div class="col-sm-4" id="wbname-div"><span id="wbname-title"></span></div>
<div class="col-sm-3" id="localtime-div"><span id="localtime-title"></span><br><span id="nowtimezone" class="table-sub-header"><span id="nowtime"></span></span></div>
<div class="col-sm-3" id="utctime-div"><span id="utctime-title"></span><br><span class="table-sub-header">(UTC)</span></div>
<div class="col-sm-2" id="waypoint-div"><span id="waypoint-title"></span></div>
</div>
</div>
<div id="note">
<p id="note-title"></p>
<ul id="note-content">
</ul>
<a href="#header" id="note-totop"></a>
</div>
<div id="footer">
<p id="footer-1">Created and maintained by <a href="http://about.me/howar31" target="_blank">Howar31</a> @ 2014.04.17</p>
<p id="footer-2">This project is hosted on <a href="https://github.com/howar31/GW2Timer" target="_blank">GitHub</a>. Any bug report or suggestion is welcome. And yes you may also whisper me in-game, my GW2 ID: HowarXXXI.3409</p>
</div>
</div>
<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-8779590-8', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>