-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver-list.tpl
More file actions
53 lines (48 loc) · 1.55 KB
/
server-list.tpl
File metadata and controls
53 lines (48 loc) · 1.55 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="">
<title></title>
<!-- Place your stylesheet here-->
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header class="main-container">
<div>
<span class="version">Current Version: {{version}}</span>
<span class="players">Players: {{players}}</span>
</div>
<div class="welcome-message">
<a href="/"><img src="img/logo.png" alt=""></a>
<div class="server-list-table">
<table>
<thead>
<tr>
<th>Hostname</th>
<th>Version</th>
<th>Slots</th>
<th>Gamemode</th>
<th>World</th>
</tr>
</thead>
<tbody>
% for server in servers:
<tr>
<td>{{server['hostname']}}</td>
<td>{{server['version']}}</td>
<td>{{server['slots']}}</td>
<td>{{server['gamemode']}}</td>
<td>{{server['world']}}</td>
</tr>
%end
</tbody>
</table>
</div>
</div>
</header>
</body>
</html>