Konfi-Castle-Kasino/tpl/index.html

43 lines
1.3 KiB
HTML

{{define "index"}}
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Kasino</title>
<link rel="stylesheet" type="text/css" href="/assets/semantic/semantic.min.css">
</head>
<body>
<div style="width: 99%; margin: 0 auto;padding-top: 10px;">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="ui celled table">
<thead>
<tr class="top">
<th scope="col">
{{if eq .Mode 0}}
Name
{{else}}
Gemeinde
{{end}}
</th>
{{if eq .Mode 0}}
<th scope="col">Gemeinde</th>
{{end}}
<th scope="col">Eingezahlte KonfiCoins Gesamt</th>
{{if eq .Mode 1}}
<th scope="col">KonfiCoins p.P.</th>
{{end}}
</tr>
</thead>
<tbody id="konfis">
<tr>
<td colspan="4">Laden...</td>
</tr>
</tbody>
</table>
</div>
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="/assets/js/jquery-3.1.1.min.js"></script>
<script>if (window.module) module = window.module;</script>
<script src="/assets/js/load.js?1504651531"></script>
</body>
</html>
{{end}}