blob: d62fc75cc3b8c050745ce977e6abb59e8c1d9b24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{ define "gril" }}
{{ $gril := .gril }}
<html>
<head>
{{ template "materialize" }}
<title>grilist</title>
<link rel="stylesheet" href="/assets/css/gril.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
</head>
<body>
<div class="container">
{{ if .loggedIn }}
<div class="row right-align">
<a class="waves-effect waves-teal btn-flat large" style="top: 24px; font-size: 18px" href="/logout">Ausloggen</a>
</div>
{{ end }}
<h1>{{ $gril.RomajiName }}<small>{{ $gril.KanjiName }}</small></h1>
</div>
</body>
</html>
{{ end }}
|