-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
60 lines (43 loc) · 1.36 KB
/
template.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>lightning Bingo!</title>
<script src="jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="main.css" type="text/css" charset="utf-8">
<script type="text/javascript" charset="utf-8">
// $( function () {
// var ul_width = $('.page ul').width();
// $('.page li').css({ height: ul_width/3 + 'px' });
// } );
</script>
</head>
<body>
[% FOR [ 1 .. 150 ] %]
<div class="page">
<br><br><br>
<h1>Lightning Talk Bingo!</h1>
<br><br><br>
<ul class="rules">
<li>Watch the talks and look out for the things below.</li>
<li>If you spot one cross it out.</li>
<li>If you cross out a row, column or diagonal you've won.</li>
<li>Shout 'BINGO!'.</li>
</ul>
<br><br><br>
<ul class="bingo_grid">
[% FOREACH event IN random_events(9) %]
<li><div>[% event %]</div></li>
[% END %]
</ul>
<br style="clear: both;">
<br><br><br><br>
<div class="footer">
Create your own set of bingo cards:<br>
https://github.com/evdb/lightning-talk-bingo
</div>
</div>
<br><br>
<div class="page-break"></div>
[% END %]
</body>
</html>