-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
99 lines (94 loc) · 3.34 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Evan Chen • Olympiad GeoGuessr</title>
<link href="css/simple-53544-legacy.css" type="text/css" rel="stylesheet" />
<link href="css/game.css" type="text/css" rel="stylesheet" />
<link href="css/sweetalert.css" type="text/css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>if (typeof jQuery === 'undefined') {
document.write(unescape('%3Cscript%20src%3D%22js/jquery.min.js%22%3E%3C/script%3E'));
}
</script>
<script src="js/episode-index.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/contrib/auto-render.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<script src="js/rungame.js"></script>
</head>
<body>
<div id="navigation_box"><div id="left_navigation_box">By Lisa Yang and Evan Chen</div></div>
<div id="header"><h1>Olympiad GeoGuessr</h1></div>
<div id="content">
<div id="side">
<div id="score_box">
<h1>Score: <span id="score"></span></h1>
</div>
<br>
<div id="time_box">
<h3>Time: <span id="time"></span></h3>
</div>
<div id="progress_box">
<h3>Progress</h3>
<ul id="progress"></ul>
<button id="prev_button" class="ui_button" type="button" disabled>Previous</button>
<button id="next_button" class="ui_button" type="button" disabled>Next</button>
</div>
<div id="mistakes_box">
<h3>Errors: <span id="mistakes"></span></h3>
</div>
<div id="found_box">
<h3>Items Found</h3>
<ul id="found"></ul>
</div>
</div>
<div id="main">
<div class="entry">
<h1 id="head_title">Welcome to Olympiad GeoGuessr</h1>
<div class="entrywrap">
<div id="top_bar">
<button id="check_button" class="ui_button" type="button" disabled>Check</button>
<button id="done_button" class="ui_button" type="button" disabled>Finish</button>
<button id="clear_button" class="ui_button" type="button" disabled>Clear</button>
<span id="curr_score_box"></span>
<p><a href="https://github.com/vEnhance/oly-geoguessr">Click here for instructions and source code</a></p>
</div>
<div id="description_box">
<div id="description">
</div>
</div>
<div id="answer_box">
<h3 id="answers_heading">Missed Items (click item to display)</h3>
<ul id="answers"></ul>
</div>
<br>
<div id="site" style="text-align: center">
<h2>Select an Episode:</h2>
<select id="episode_select">
</select>
<button id="start_game" disabled></button>
</div>
<div id="credits">
<p><b>Thanks</b> to the following people who contributed diagrams:</p>
<ul>
<li>Evan Chen</li>
<li>Michael Wang</li>
<li>Sutanay Bhattacharya</li>
<li>Alex Zhao</li>
</ul>
<p><b>Help Out:</b> I'm looking for people to help contribute Asymptote diagrams for this project.
<a href="https://github.com/vEnhance/oly-geoguessr/tree/master/asy-sources/000-Demo">
Here's an example of a few of these diagrams.</a>
Please send me an email if you'd be interested in contributing!</p>
</div>
</div> <!-- /entrybox -->
<br>
<div id="quit_box">
<button id="quit_button" class="ui_button" type="button" disabled>Give Up</button>
</div>
</div>
</div>
</div>
</body>
</html>