forked from klikk/supraball-serverlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (64 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/ico" href="favicon.ico">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
<title>Supraball Server List</title>
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" language="javascript" src="js/vendor/jquery.min.js"></script>
<script type="text/javascript" language="javascript" src="js/vendor/jquery.dataTables.min.js"></script>
<script type="text/javascript" language="javascript" src="js/vendor/dataTables.bootstrap.js"></script>
<script type="text/javascript" language="javascript" src="js/example-data.js"></script>
<script type="text/javascript" language="javascript" src="js/main.js"></script>
</head>
<body class="dt-example">
<div class="container">
<section>
<h1>Supraball Serverlist</h1>
<div class="info">
<p>Styling coming soon...</p>
</div>
<table id="server-list" class="table table-striped table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th>IP</th>
<th>Port</th>
<th>Title</th>
<th>Description</th>
<th>Max Players</th>
<th>Max Spectators</th>
<th>Max duration</th>
<th>Max goals</th>
<th>Current players</th>
<th>Current duration</th>
<th>Goals red</th>
<th>Goals blue</th>
<th>Map</th>
<th>Training</th>
</tr>
</thead>
<tfoot>
<tr>
<th>IP</th>
<th>Port</th>
<th>Title</th>
<th>Description</th>
<th>Max Players</th>
<th>Max Spectators</th>
<th>Max duration</th>
<th>Max goals</th>
<th>Current players</th>
<th>Current duration</th>
<th>Goals red</th>
<th>Goals blue</th>
<th>Map</th>
<th>Training</th>
</tr>
</tfoot>
</table>
</section>
</div>
</body>
</html>