forked from sametmax/allthatcounts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (56 loc) · 2.15 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
<!DOCTYPE html>
<html ng-app="counterApp" manifest="cache.manifest">
<head>
<meta charset="utf-8" />
<meta name="keywords" content="Countdown, chrono, timers, counters, games, sports" />
<meta name="description" content="Countdown, chrono, timers and counters for games or sports" />
<meta name="robots" content="index,follow" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
All that counts - Countdown, chrono, timers and counters for games or sports
</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div ng-controller="TabsCtrl">
<tabset>
<tab heading="Countdown" select="selectTab('countdown')">
<div ng-include="'templates/countdown.html'"></div>
</tab>
<tab heading="Chrono" select="selectTab('chrono')">
<div ng-include="'templates/chronos.html'"></div>
</tab>
<tab heading="Counter" class="counters" select="selectTab('counter')">
<div ng-include="'templates/counters.html'"></div>
</tab>
<tab heading="Versus" class="versus" select="selectTab('versus')">
<div ng-include="'templates/versus.html'"></div>
</tab>
<tab heading="Scores" class="scores" select="selectTab('scores')">
<div ng-include="'templates/scores.html'"></div>
</tab>
</tabset>
</div>
<audio id="audio-notification">
<source src="sound/gong.mp3"></source>
<source src="sound/gong.ogg"></source>
</audio>
</div>
</body>
<script src="js/angular.js"></script>
<script src="js/ui-bootstrap-tpls-0.10.0.js"></script>
<script src="js/main.js"></script>
<script src="js/timer.service.js"></script>
<script src="js/misc.service.js"></script>
<script src="js/versus.service.js"></script>
<script src="js/scores.service.js"></script>
</html>