blob: 0551285ace57dab38f434175e413d98c356d3710 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{{ 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 $card := $category.Cards }}
<div class="col s12 m6 l4">
<div class="card white">
<div class="card-content black-text">
<span class="card-title">{{ $card.Title | html }}</span>
<p>{{ $card.Description | html }}</p>
</div>
<div class="card-action">
{{ range $action := $card.Actions }}
{{ if $action.Disabled }}
<span>{{ $action.Name | html }}</span>
{{ else }}
<a href="{{ $action.Link }}">{{ $action.Name | html }}</a>
{{ end }}
{{ end }}
</div>
</div>
</div>
{{ end }}
</div>
{{ end }}
</div>
</div>
</body>
</html>
{{ end }}
|