-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlist.html
29 lines (29 loc) · 1.16 KB
/
list.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
<!DOCTYPE html>
<html>
<head>
<title>mí soakue</title>
<link href="fonts/NotoSans-Regular.ttf" rel="preload" as="font" crossorigin />
<link href="noto.css" rel="stylesheet" />
<link href="iosevka.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>soakue • 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>