forked from toaq/dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 966 Bytes
/
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
<!DOCTYPE html5>
<html>
<head>
<title>Toaq Dictionary</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Trade+Winds:400|Merriweather:400?display=swap|Merriweather+Sans:300" rel="stylesheet">
<link href="./html/sheets.css" rel="stylesheet">
</head>
<body>
<div id="loading">
<p>Please wait, downloading the dictionary file…</p>
</div>
<main id="generated" style="display: none;">
<h1><span class="suoi">Toaq</span> Dictionary</h1>
<input type="checkbox" id="compact" onchange="javascript:document.querySelector('html').className = compact.checked ? 'compact' : ''"> <label for="compact">Compact</label>
<p>You may also view <a href="./dictionary.json">the JSON file</a>.</p>
<div class="entries">
%%%
</div>
</main>
<script src="./html/load.js"></script>
</body>
</html>