-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
66 lines (45 loc) · 2.49 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
<html>
<head>
<title>Wikischool Geo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<link rel="stylesheet" href="./styles/og.css?1" type="text/css" />
<script src="./libs/jquery-3.3.1.min.js"></script>
<script src="./libs/typeahead.bundle.min.js"></script>
<script src="./libs/papaparse.min.js"></script>
<script src="./libs/og.js?2"></script>
<script src="./libs/dexie.js"></script>
<base target="_self">
</head>
<body onload="randombg()">
<div id="progressbar" style="width:5%">5%</div>
<span id="globe">
<form id="typeahead" style="display:none;">
<div id="city" style="margin-bottom:12px">
<input type="text" id="city-typeahead" class="form-control typeahead" data-provide="typeahead" style="width:400px" placeholder="search">
</div>
<!--button id="typeahead-submit" type="submit" class="btn btn-default">Submit</button-->
</form>
<a id="goUpButton" class="geo-button" title="go up"><i class="far fa-arrow-alt-circle-up" style="color:black;"></i></a>
<a id="goDownButton" class="geo-button" title="go down" ><i class="far fa-arrow-alt-circle-down" style="color:gray;"></i></a>
<a id="maximizeWindowButton" class="geo-button" title="maximize window"><i class="fas fa-arrows-alt" style="color:black;"></i></a>
<a id="maximizeMapButton" class="geo-button" title="maximize map"><i class="fas fa-arrows-alt-h" style="color:black;"></i></a>
<a id="compassButton" class="geo-button" title="align view to North-South"><i class="far fa-compass" style="color:gray;"></i></a>
</span>
<span id="info_pane">
<div id="info">
<div id="banner">
<h1 id="banner-header"><a href="https://wikischool.org">wikischool</a> <a href="https://github.com/waldenn/wikischool-geo">geo</a> - discover our world</h1>
</div>
</div>
<span id="content_pane">
<div id="content">
<div id="mycontent"></div>
<iframe id="myframe" name="myframe" src="" allowfullscreen="1" sandbox="allow-same-origin allow-scripts allow-forms allow-top-navigation allow-popups allow-popups-to-escape-sandbox"></iframe>
</div>
</span>
</span>
<script src="./src/main.js?9"></script>
</body>
</html>