Konfi-Castle-Kasino/tpl/index.html

40 lines
1.1 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</th>
</tr>
</thead>
<tbody id="konfis">
<tr>
<td colspan="3">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"></script>
</body>
</html>
{{end}}