-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (72 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="static/style.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="static/jquery-3.6.0.min.js"></script>
<script src="static/app.js"></script>
<title>Khowarpedia - Word Search</title>
</head>
<body>
<div id="body">
<div class="toolbar">
<div class="config">
<div class="explorer">
<input id="explorer" name="explorer" type="checkbox">
<label for="explorer">Explorer</label>
</div>
<div class="mode">
<span data-mode="khowar" role="button">KHW</span>
<span class="selected" data-mode="en-ur" role="button">EN/UR</span>
</div>
</div>
<div class="searchbar">
🔎
<div class="search">
<input type="text" spellcheck="true" placeholder="Enter word">
<button class="next">⬇️</button>
<button class="prev">⬆️</button>
</div>
<div class="counting">
<span class="current-index"></span>/
<span class="count"></span>
</div>
</div>
</div>
<div class="filters">
<button class="template alphabet"></button>
</div>
<div class="list">
<div class="loading">📚⏳</div>
<table cellspacing="10">
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr class="template item">
<td>
<p></p>
<p class="lexeme"></p>
</td>
<td>
<p></p>
<p class="english"></p>
</td>
</tr>
</tbody>
</table>
</div>
<footer>
<p>Made with ❤️ from The Village White Rock, Booni ⛰️</p>
<p class="attribution">
PRIMARY DATA SOURCE — <a href="https://www.webonary.org/rachitrali/en/overview/" target="_blank">Chitrali, Rehmat Aziz - Khowar Academy.</a>
</p>
</footer>
</div>
</body>
</html>