-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
72 lines (68 loc) · 2.19 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
<html>
<head>
<title>Shitty Beer Bingo</title>
<script data-main="assets/js/app" src="assets/vendor/requirejs/require.js"></script>
<link href="assets/style.css" rel="stylesheet">
<link rel="icon" type="image/png" href="beers.png">
<meta name="viewport" content="width=device-width">
</head>
<body>
<table>
<thead>
<tr>
<th colspan="5">Shitty Beer Bingo</th>
</tr>
</thead>
<tbody>
<tr data-row="0">
<td data-col="0">Beer</td>
<td data-col="1">Beer</td>
<td data-col="2">Beer</td>
<td data-col="3">Beer</td>
<td data-col="4">Beer</td>
</tr>
<tr data-row="1">
<td data-col="0">Beer</td>
<td data-col="1">Beer</td>
<td data-col="2">Beer</td>
<td data-col="3">Beer</td>
<td data-col="4">Beer</td>
</tr>
<tr data-row="2">
<td data-col="0">Beer</td>
<td data-col="1">Beer</td>
<td id="freespace" data-col="2">Pabst Blue Ribbon</td>
<td data-col="3">Beer</td>
<td data-col="4">Beer</td>
</tr>
<tr data-row="3">
<td data-col="0">Beer</td>
<td data-col="1">Beer</td>
<td data-col="2">Beer</td>
<td data-col="3">Beer</td>
<td data-col="4">Beer</td>
</tr>
<tr data-row="4">
<td data-col="0">Beer</td>
<td data-col="1">Beer</td>
<td data-col="2">Beer</td>
<td data-col="3">Beer</td>
<td data-col="4">Beer</td>
</tr>
</tbody>
</table>
<p class="controls"><button type="button" class="js-reset reset">New Card</button>
<footer>
<a href="https://github.com/skalnik/shitty-beer-bingo" alt="Source code on GitHub">
Made with <img class="emoji" src="beers.png" alt="♥"> by @skalnik
</a>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60728454-1', 'auto');
ga('send', 'pageview');
</script>
</body>