Konfi-Castle-Kasino/tpl/index.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2017-06-15 09:30:32 +00:00
{{define "index"}}
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Kasino</title>
2017-08-31 16:47:38 +00:00
<link rel="stylesheet" type="text/css" href="/assets/semantic/semantic.min.css">
2017-06-15 09:30:32 +00:00
</head>
<body>
2017-08-31 16:47:38 +00:00
<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>
2017-08-31 20:49:55 +00:00
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="/assets/js/jquery-3.1.1.min.js"></script>
2017-08-31 20:49:55 +00:00
<script>if (window.module) module = window.module;</script>
2017-06-15 09:30:32 +00:00
<script src="/assets/js/load.js"></script>
</body>
</html>
{{end}}