-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (73 loc) · 3.13 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
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>WikiLists</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1><img id="logo" src="images/logoWikiListsSmall.png" alt="wikiLists">WikiLists</h1>
<div>
<div id="searchBar">
<input type="text" id="searchQuery" name="search" />
<button type="button" class="btn btn-primary" aria-label="Left Align" onclick="SearchWiki();">
<span class="glyphicon glyphicon-search" aria-hidden="true"></span>
</button>
</div>
</div>
<div id="lists">
<div class="list">
<div class="listToolBar">
<h2>Results</h2>
</div>
<div id="list">
</div>
</div>
<div class="list">
<div class="listToolBar">
<h2 id="listTitle">Saved</h2>
<div class="listToolBarButtons">
<button type="button" class="btn btn-primary" aria-label="Left Align" onclick="listChooser();">
<span class="glyphicon glyphicon-th-list" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-primary" aria-label="Left Align" onclick="">
<span class="glyphicon glyphicon-share" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-primary" aria-label="Left Align" onclick="clearAllData();">
<span class="glyphicon glyphicon glyphicon-trash" aria-hidden="true"></span>
</button>
</div>
</div>
<div id="savedList">
</div>
</div>
</div>
<div id="debug">
</div>
<div id="listChooser" style="display:none">
<div id="listChooserShortCuts">
</div>
<input type="text" id="listNameChange" name="listNameChange" />
<button type="button" class="btn btn-success" aria-label="Left Align" onclick="changeList();">
<span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-danger" aria-label="Left Align" onclick="$('#listChooser').hide();">
<span class="fa fa-ban" aria-hidden="true"></span>
</button>
</div>
<script src="js/WikiWrapper.js"></script>
<script src="js/DatabaseAPI.js"></script>
<script src="js/Display.js"></script>
<script src="js/underscore.string.min.js"></script>
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/underscore-min.js"></script>
<script src="js/handlebars-v2.0.0.js"></script>
<script src="js/Dexie.js"></script>
<script src="js/index.js"></script>
<script>
SearchWiki();
</script>
</body>
</html>