-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.34 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
<!doctype html>
<html manifest="cache.manifest">
<head>
<title>Bullshit Bingo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.0a4.1.min.css" />
<script src="jquery.mobile/jquery-1.5.2.min.js"></script>
<script src="jquery.mobile/jquery.mobile-1.0a4.1.min.js"></script>
<script src="bingo.js"></script>
</head>
<body>
<div data-role="page">
<!-- /header -->
<div data-role="header">
<h1>Bullshit Bingo</h1>
</div>
<!-- /content -->
<div data-role="content">
<ul data-role="listview" data-theme="g" id="firstlist" data-insert="true">
</ul>
</div>
<!-- /footer -->
<div data-role="footer">
<h4><a href="https://github.com/mindbreaker/bullshit_bingo" data-role="button">☛ Alex / Matthias / Tom ☚</a></h4>
<h4><a href="http://www.freesound.org/samplesViewSingle.php?id=117120" data-role="button">Audio by Freesounds.org</a></h4>
</div>
</div><!-- /page -->
<audio preload="auto">
<source src="alarm.ogg" type="audio/ogg" />
<source src="alarm.mp3" type="audio/mpeg" />
</audio>
</body>
</html>