-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
187 lines (183 loc) · 5.72 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Agility - Mob Programming Timer</title>
<meta
content="Mob Programming Timer, Pair Programming Timer, Agile XP Retrospective Timer, Meeting Timer."
name="description"
/>
<link
href="https://jahed.github.io/agility/assets/rotate.png"
rel="icon"
type="image/png"
/>
<link
href="https://jahed.github.io/agility/assets/rotate.png"
rel="apple-touch-icon-precomposed"
type="image/png"
/>
<meta content="website" property="og:type" />
<meta content="Agility - Mob Programming Timer" property="og:site_name" />
<meta
content="https://jahed.github.io/agility/assets/rotate.png"
property="og:image"
/>
<meta
content="Mob Programming Timer, Pair Programming Timer, Agile XP Retrospective Timer, Meeting Timer."
property="og:description"
/>
<link
href="https://jahed.github.io/agility/assets/rotate.png"
rel="shortcut icon"
type="image/png"
/>
<link
href="https://jahed.github.io/agility/assets/rotate.png"
rel="icon"
type="image/png"
/>
<link
href="https://jahed.github.io/agility/assets/rotate.png"
rel="apple-touch-icon-precomposed"
type="image/png"
/>
<link href="vendors/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="vendors/foundation/foundation.css" rel="stylesheet" type="text/css" />
<link href="main.css" rel="stylesheet" type="text/css" />
</head>
<body class="timer f-topbar-fixed">
<div class="fixed">
<nav class="top-bar" data-topbar="" role="navigation">
<ul class="title-area">
<li class="name">
<h1>
<a href="https://jahed.github.io/agility">AGILITY</a>
</h1>
</li>
<li class="toggle-topbar menu-icon">
<a>
<span>Menu</span>
</a>
</li>
</ul>
<section class="top-bar-section">
<ul class="left">
<li class="active">
<a href="https://jahed.github.io/agility">
<i class="fa fa-clock-o"></i>
<span>Timer</span>
</a>
</li>
<li>
<a href="https://github.com/jahed/agility" target="_blank">
<i class="fa fa-github"></i>
<span>Source</span>
</a>
</li>
<li>
<a href="https://github.com/sponsors/jahed" target="_blank">
<i class="fa fa-heart"></i>
<span>Sponsor</span>
</a>
</li>
<li>
<a href="https://jahed.dev" target="_blank">
<span>© Jahed</span>
</a>
</li>
</ul>
<ul class="nav-timer right">
<li class="divider"></li>
<li class="nav-timer-play">
<a href="#">
<i class="fa fa-play"></i>
<span></span>
</a>
</li>
<li class="nav-timer-pause">
<a href="#">
<i class="fa fa-pause"></i>
<span></span>
</a>
</li>
<li class="nav-timer-stop active">
<a href="#">
<i class="fa fa-stop"></i>
<span></span>
</a>
</li>
<li class="nav-timer-settings">
<a href="#" data-reveal-id="settingsModal">
<i class="fa fa-cog"></i>
<span></span>
</a>
</li>
</ul>
</section>
</nav>
</div>
<div class="middled counter stopped">
<div>
<div class="counter-text">Start</div>
<small class="turn-text"></small>
</div>
</div>
<div class="hidden">
<audio class="alert" src="assets/door-bell.wav" volume="1"></audio>
</div>
<div
class="reveal-modal"
data-reveal=""
id="settingsModal"
role="dialog"
aria-hidden="true"
>
<a class="close-reveal-modal">×</a>
<h2>Timer Settings</h2>
<div class="row collapse">
<div class="small-3 columns">
<label class="prefix" for="#period">Duration</label>
</div>
<div class="small-8 columns">
<input
class="period text-center"
id="period"
placeholder="Minutes"
type="number"
value="10"
/>
</div>
<div class="small-1 columns">
<label class="postfix" for="#period">minutes</label>
</div>
</div>
<h4>
<span>Mobsters</span>
<small>You need at least two.</small>
</h4>
<span class="button small expand add-mobster">Add a Mobster</span>
<div class="mobster-container"></div>
<a
class="button small secondary save-settings"
title="Page reloads with settings in the querystring, save or share using your browser"
tabindex="0"
>
Save
</a>
<a
class="button small secondary shuffle-mobsters"
title="Page reloads with shuffled mobsters"
tabindex="0"
>
Shuffle
</a>
</div>
<script src="vendors/foundation/jquery.js" type="text/javascript"></script>
<script src="vendors/foundation/fastclick.js" type="text/javascript"></script>
<script src="vendors/foundation/foundation.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
</body>
</html>