-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 2.53 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='description' content='Diversify your Encounters'>
<!-- Start favicon mess -->
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<!-- end favicon mess -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700&display=swap" rel="stylesheet">
<link rel='stylesheet' href='styles.css'>
<script type='module' src='main.js' defer></script>
<script type='module' src='import.js' defer></script>
<title>Savage Bingo</title>
</head>
<body>
<main>
<h1>Savage Bingo</h1>
<ul id='options'>
<li id='new'>New</li>
<li id='reset'>Reset</li>
<li><label>Import JSON<input type='file' class='import' accept='.json' style='display:none;' /></label></li>
<ul id='file-list'>
<li id='no-files-msg' class='hidden'>There are no square sets loaded. Would you like to <label class='faux token'>import some<input type='file' class='import' accept='.json' style='display:none;' /></label>, or use the <span id='add-defaults' class='import faux token'>default squares</span>?</li>
</ul>
</ul>
<div id='bingo-card'>
</div>
<div><em>There is no guarantee that Savage Bingo will look/behave exactly the same day to day as development continues (or doesn't continue). Will try to limit updates to Mondays CST.</em></div>
</main>
<footer>
<ul>
<li>Savage Bingo by Gazook89</li>
<li>©2022</li>
<li><a title='Go to License' href='https://github.com/Gazook89/savage-bingo/blob/main/LICENSE'>GPL-3.0 License</a></li>
<li><a title='Github' href='https://github.com/Gazook89/savage-bingo'>GitHub</a></li>
<li><a title='Donate via Ko-fi' href='https://ko-fi.com/johnj'>Tip Jar</a></li>
<li><a id='clear-storage-link' title='Clear all saved info' href='#'>Clear localStorage</a></li>
</ul>
</footer>
</body>
</html