-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel.html
More file actions
72 lines (66 loc) · 3.02 KB
/
level.html
File metadata and controls
72 lines (66 loc) · 3.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tron Melee: Level</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<!-- Override CSS file - add your own CSS rules -->
<link rel="stylesheet" href="css/styles.css">
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/geturlparameter.js"></script>
<script type="text/javascript" src="js/levelresults.js"></script>
</head>
<body onload="levelresults.generate()">
<div class="container">
<div class="header">
<a href="index.html"><img src="img/tronmelee_logo.png" alt="" /></a>
</div>
<div class="nav-bar">
<ul class="nav">
<li><a href="index.html">Standings</a></li>
<li><a href="level.html?id=1">Level 1</a></li>
<li><a href="level.html?id=2">Level 2</a></li>
<li><a href="level.html?id=3">Level 3</a></li>
<li><a href="level.html?id=4">Level 4</a></li>
<li><a href="level.html?id=5">Level 5</a></li>
<li><a href="level.html?id=6">Level 6</a></li>
</ul>
</div>
<div class="content">
<div class="main">
<h1>Level</h1>
<p id="level-replay-link">Replay level</p>
<table id="level-results" class="table table-striped">
<thead>
<tr>
<th></th>
<th></th>
<th id="game-1" class="center" colspan="2">Game 1</th>
<th id="game-2" class="center" colspan="2">Game 2</th>
<th id="game-3" class="center" colspan="2">Game 3</th>
<th></th>
</tr>
<tr>
<th>#</th>
<th>Team/Bot</th>
<th class="center">Moves</th>
<th class="center">Score</th>
<th class="center">Moves</th>
<th class="center">Score</th>
<th class="center">Moves</th>
<th class="center">Score</th>
<th class="center">Total</th>
</tr>
</thead>
</table>
<pre id="debug"></pre>
</div>
</div>
<div class="footer">
web template by <a href="http://css.maxdesign.com.au/">maxdesign</a>
</div>
</div>
</body>
</html>