Konfi-Castle-Kasino/tpl/index.html

28 lines
657 B
HTML

{{define "index"}}
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Kasino</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="top">
<th scope="col">Name</th>
{{if eq .Mode 0}}
<th scope="col">Gemeinde</th>
{{end}}
<th scope="col">Eingezahlte KonfiCoins</th>
</tr>
<tbody id="konfis">
<tr>
<td colspan="3">Laden...</td>
</tr>
</tbody>
</table>
<script src="/assets/js/jquery-3.1.1.min.js"></script>
<script src="/assets/js/load.js"></script>
</body>
</html>
{{end}}