-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (35 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Woodhouse English-Greek Dictionary</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js" integrity="sha256-obZACiHd7gkOk9iIL/pimWMTJ4W/pBsKu+oZnSeBIek=" crossorigin="anonymous"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="src/js/vendor/papaparse/papaparse.min.js"></script>
<script data-main="src/js/woodhouse" src="src/js/vendor/requirejs/2.3.3/require.js"></script>
</head>
<body>
<div class="container">
<div style="text-align: center">
<h1>Woodhouse English-Greek Dictionary</h1>
<h3><small>Search for headwords in the Woodhouse English-Greek Dictionary.</small></h3>
</div>
<br />
<div class="row">
<div class="col-lg-3 hidden-xs"> </div>
<div class="ui-widget col-lg-6 col-xs-12">
<input id="search" class="form-control" placeholder="Loading dictionary data..." disabled/>
</div>
<div class="col-lg-3 hidden-xs"> </div>
</div>
<br />
<div id="search_status"><p> </p></div>
<div id="results">
</div>
</div>
</body>
</html>