-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.73 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Bclock</title>
<link rel="stylesheet" href="assets/css/digitalClock.css">
<link rel="stylesheet" href="assets/css/digitalDate.css">
<link rel="stylesheet" href="assets/css/timer.css">
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="assets/css/theme.css">
<link rel="stylesheet" href="assets/themes/mono/theme.css">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '##UA##']);
_gaq.push(['_setDomainName', '##DOMAIN##']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="mono">
<div class="upWrapper">
<div class="up">
<div id="digitalClock"></div>
</div>
</div>
<div class="downWrapper">
<div class="down">
<div id="digitalDate"></div>
<div id="stopWatchContainer"></div>
<div id="stopWatch1" style="display:none;">stopwatch</div>
<div id="controllers">
<ul>
<li><button class="addStopWatch tb medium iconClock"></button> </li>
</ul>
</div>
</div>
</div>
<script src="assets/js/libs/jQuery.js"></script>
<script src="assets/js/libs/_.js"></script>
<script src="assets/js/libs/Backbone.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>