-
Notifications
You must be signed in to change notification settings - Fork 0
/
leaderboard.html
49 lines (46 loc) · 1.35 KB
/
leaderboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
<body>
<div class="container">
<img src="/images/superman.png" id="logo">
</div>
<div class="container">
<h2>Current Scores</h2>
<table class="table table-striped">
<thead>
<tr>
<th>{{{tag1_1}}}</th>
<th>{{{ac1_1}}}</th>
<th>{{{ac2_1}}}</th>
</tr>
</thead>
<tbody>
<tr>
<th>{{{tag1_2}}}</th>
<th>{{{ac1_2}}}</th>
<th>{{{ac2_2}}}</th>
</tr>
<tr>
<th>{{{tag1_3}}}</th>
<th>{{{ac1_3}}}</th>
<th>{{{ac2_3}}}</th>
</tr>
<tr>
<th>{{{tag1_4}}}</th>
<th>{{{ac1_4}}}</th>
<th>{{{ac2_4}}}</th>
</tr>
</tbody>
</table>
</div>
</body>
</html>