-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
30 lines (30 loc) · 1.33 KB
/
template.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>${ title ? title : code } · Gamekeller</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link ${ nonce } rel="stylesheet" href="style.css" inline>
</head>
<body>
<a href="https://gamekeller.net" class="logo-box">
<svg class="logo" width="32" height="32" viewBox="0 0 512 512"><path d="M256 0C114.615 0 0 114.615 0 256s114.615 256 256 256 256-114.615 256-256V0H256zm204 256c0 112.666-91.334 204-204 204S52 368.666 52 256 143.334 52 256 52c54.054 0 146.827-.172 204 0-.03 33.043 0 145.388 0 204z"/><path d="M256 120c-75.11 0-136 60.89-136 136s60.89 136 136 136 136-60.89 136-136V120H256z"/></svg>
</a>
<div class="header">
<small class="error-code">${ code }</small>
<h1 class="heading">Ein Fehler ist aufgetreten.</h1>
</div>
${ title || body ? '<div class="content">' + (title ? '<h1 class="title">' + title + '</h1>' : '') + (body ? body : '') + '</div>' : '' }
<ul class="footer">
<li>
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<a href="ts3server://gamekeller.net?port=9987">TeamSpeak 3 Server</a>
</li>
<li>
<a href="https://twitter.com/gamekeller">@gamekeller</a>
</li>
</ul>
</body>
</html>