aboutsummaryrefslogtreecommitdiff
path: root/views/pages/dashboard.html
blob: 045d4ab6521db1131fb795fa0cfa2d2ec9858fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ define "dashboard" }}
<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">
					{{ range $category := .categories }}
						<h2>{{ $category.Title }}</h2>
						<div class="row">
						{{ range $category.Cards }}
							{{ template "card" . }}
						{{ end }}
						</div>
					{{ end }}
				</div>
			</div>
        </body>
</html>
{{ end }}