-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<title>inglise-eesti sõnastik</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="css/styles.css" rel="stylesheet">
<base />
</head>
<body>
<script id="home-tpl" type="text/x-handlebars-template">
<div class='header'><h1>{{title}}</h1></div>
<div class='search-bar'><input class='search-key' id='search-key' type="search" value="{{word}}" /></div>
<div class="scroll"><ul class='word-list'></ul></div>
<div id="desc" class='scroll intro'>
{{{intro}}}
<footer><small>{{copyright}} <a href="http://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a></small></footer>
</div>
</script>
<script id="word-li-tpl" type="text/x-handlebars-template">
{{#.}}
<li class='word-list'><a href="#word/{{this}}">{{this}}</a></li>
{{/.}}
</script>
<script id="word-tpl" type="text/x-handlebars-template">
<div class='header'><h1>{{title}}</h1></div>
<div class='search-bar'><input class='search-key' id='search-key' type="search"/></div>
<div id="word-list" class="scroll"><ul class='word-list'></ul></div>
<div id="desc" class='scroll desc'>
{{{desc}}}
</div>
</script>
<script src="lib/jquery-1.8.2.min.js"></script>
<script src="lib/handlebars.js"></script>
<script src="js/RemoteApis.js"></script>
<script src="js/HomeView.js"></script>
<script src="js/WordView.js"></script>
<script src="js/app.js"></script>
<script src="phonegap.js"></script>
</body>
</html>