-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
83 lines (78 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en-us" dir="ltr">
<head>
<meta charset="UTF-8" />
<title>Jeff's office hours bingo</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="mootools.css" />
</head>
<body>
<main>
<div class="top-area">
<h1 id="page-title">Jeff's Bingo (Now with autosave)</h1>
<h2 id="cards" class="visually-hidden">Cards</h2>
<div class="grid-wrapper">
<ol id="bingo" role="list" aria-labelledby="cards"><!-- Contents will be replaced with JS --></ol>
</div>
</div>
<section class="actions">
<h2 id="actions" class="visually-hidden">Actions</h2>
<ul role="list" aria-labelledby="actions">
<li><button id="newgrid" onclick="randomLoad()">Random card</button></li>
<li><button id="carltonify" onclick="carltonify()">Special guest mode</button></li>
</ul>
</section>
</main>
<script type="text/javascript" src="./textFit.min.js"></script>
<script type="text/javascript" src="./mootools.js"></script>
<script type="application/json" id="bingodata">
[
"AI",
"Alex references bingo",
"Avoiding US politics",
"Back in my day",
"Baptiste makes a bad pun",
"Basketball",
"Cathartic rant",
"Cats",
"Chris fireworks camera effect",
"Chris rants about Ruby",
"Claude it",
"Colonialism",
"Django",
"Django Chat",
"Django News",
"Executive Director",
"Flask",
"Invited for a keynote",
"Jay writes something not in Python",
"just",
"Keyboard show-off",
"Kojo talks about Texas geography",
"Marijke complains about Amsterdam",
"Non-metric measurement",
"Non-US politics",
"Old man yells at cloud(provider)",
"Opensource community drama",
"PEP",
"Python",
"Significant last minute drop-in",
"Start a thread on the forum",
"Stroopwafels",
"Tailwind",
"This is a safe space",
"This is fine",
"Tim is summoned",
"Two people with the same (first) name",
"USA vs. Europe",
"uv",
"VCS platforms",
"Video game controllers",
"WordPress"
]
</script>
<script type="text/javascript">
loadBingo();
</script>
</body>
</html>