-
Notifications
You must be signed in to change notification settings - Fork 3
/
home.tpl
66 lines (59 loc) · 1.49 KB
/
home.tpl
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
<!DOCTYPE html>
<html>
<head>
<title>ArcticMUD Logs</title>
<style>
.column {
float: left;
width: 33.33%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.issues, .upload {
font-size: 10pt;
}
.upload span {
background: #eaeaea;
color: #000000;
}
body {
font-family: monospace;
font-size: 12pt;
}
</style>
</head>
<body>
<p class="issues">See something that looks broken? Clan that shouldn't exist (etc.)? Go <a href="https://github.com/laser/arctic-logs-webservice/issues">here</a> and file an issue.</p>
<p class="upload">Have a log file you'd like added? Feature request? Send an email to <span>[email protected]</span>.</p>
<div class="row">
<div class="column">
<u>Clans</u>
<ul>
{{ range .Clans}}
<li><a href={{ .Url }}>{{ .Label }}</a></li>
{{ end }}
</ul>
</div>
<div class="column">
<u>Players</u>
<ul>
{{ range .Players}}
<li><a href={{ .Url }}>{{ .Label }}</a></li>
{{ end }}
</ul>
</div>
<div class="column">
<u>Logs</u>
<ul>
{{ range .Logs}}
<li><a href={{ .Url }}>{{ .Label }}</a></li>
{{ end }}
</ul>
</div>
</div>
</body>
</html>