aboutsummaryrefslogtreecommitdiff
path: root/views/tag.html
blob: 788083f2f90ee867414845c4c67d45b2b412e40d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ define "tag" }}
<html>
	<head>
		{{ template "materialize" }}
		<title>grilist</title>
		<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
	</head>
	<body>
		{{ template "navbar" . }}
		<div class="container">
			<div class="row">
			<h2>Grils mit dem Tag &quot;{{ .tag }}&quot;:</h2>
			<div class="row">
				{{ range .cards }}
					{{ template "card" . }}
				{{ end }}
			</div>
			</div>
		</div>
	</body>
</html>
{{ end }}