-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlist.html
More file actions
29 lines (29 loc) · 971 Bytes
/
list.html
File metadata and controls
29 lines (29 loc) · 971 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>sóakue • all words</title>
<link href="fonts.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="nuifuaq.png" type="image/png" />
</head>
<body>
<h1>sóakue • all words</h1>
<p><a href="https://github.com/mi2ebi/soakue">github</a></p>
<p id="loading">loading...</p>
<div id="res"></div>
<script src="data/toakue.js"></script>
<script src="helper.js"></script>
<script>
let URLfromQuery = q =>
window.location.href.split("?")[0].replace("list", "index")
+ (q ? "?q=" + encodeURIComponent(q) : "");
for (const entry of dict)
$`res`.append(htmlify(entry));
for (a of document.querySelectorAll("a"))
a.onclick = null;
$`loading`.innerHTML = "";
</script>
</body>
</html>