-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (29 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ojibwe Dictionary Test</title>
<link rel="stylesheet" href="style.css" />
<script type="module" src="js/main.js"></script>
</head>
<body>
<form id="searchcontrols">
<div id="search-oj">
<input id="oj-query" placeholder="Search Ojibwe"/>
<select id="oj-mode">
<option value="0">Whole word</option>
<option value="1">Query ⊆ word</option>
<option value="2">Word ⊆ query</option>
</select>
</div>
<div id="search-en">
<input id="en-query" placeholder="Search English"/>
</div>
</form>
<ul id="results"></ul>
<footer>
<p>App created by George Steel. Dictionary compiled by Weshki-ayaad, Charlie Lippert, and Guy Gambill (see <a href="/data/ojibwe_readme.pdf">README</a> for full details). Source available on <a href="https://github.com/george-steel/ojibwe-dict-app">Github</a>.</p>
</footer>
</body>
</html>