-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·67 lines (65 loc) · 3.21 KB
/
index.html
File metadata and controls
executable file
·67 lines (65 loc) · 3.21 KB
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
<!--[if IE_NEEDS_THIS]><![endif]-->
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<title>Timer</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link id="favicon" rel="icon" type="image/png" href="favicon.ico">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="js/vendor/jquery-ui-1.10.4/css/ui-lightness/jquery-ui-1.10.4.min.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="page">
<div id="masthead" class="masthead">
<h1 class="page-title">Task Timer</h1>
<div class="computed contained">
<div id="last-saved" class="last-saved"></div>
<div id="total-time" class="total-time"></div>
</div>
</div>
<div id="main-content">
<div id="controls" class="controls contained"></div>
<div id="messages"></div>
<div class="containers contained">
<ul id="containers-wrapper" class="containers-wrapper"></ul>
</div>
</div>
<div id="countdown"></div>
</div>
<div id="settings">
<form>
Check for sound alerts (requires an active browser tab) <input type="checkbox" name="sound" value="1" id="sound"><br />
Alert time interval (minutes) <input type="text" name="time-increment" value="15" id="time-increment">
<br />
Clear all autocomplete caches. <input type="checkbox" name="clear-chache" value="1" id="clear-cache">
</form>
</div>
<div id="footer">
<div class="contained">
Created by <a href="https://github.com/anthonylindsay/tasktimer">Anthony Lindsay</a>. (But it got a little love from <a href="https://github.com/markconroy/tasktimer">Mark Conroy</a>.)
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script>
<script src="js/vendor/jquery-ui-1.10.4/js/jquery-ui-1.10.4.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="js/elements.js"></script>
<script src="js/vendor/jquery.runner-min.js"></script>
<script src="js/vendor/favico-0.3.4.min.js"></script>
<audio id="bell" preload="auto" src="audio/bell.mp3">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
</body>
</html>