blob: 39830619d227e6bc6bbf647be724d591a81cb294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{ 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>
{{ template "navbar" . }}
<div class="container">
<h1>{{ $gril.RomajiName }}<small>{{ $gril.KanjiName }}</small></h1>
{{ range $tag := $gril.Tags }}
<div class="chip">
{{ $tag }}
</div>
{{ end }}
</div>
</body>
</html>
{{ end }}
|