aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layouts/_default/list.html
blob: e65e0a3f46fd896334b2a0a2137edb4287dc8a65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ define "header" }}
    <h1>{{ .Title | markdownify }}</h1>
{{ end }}
{{ define "main" }}

    {{ .Content }}

    <menu>
        {{ $cardConfig := dict
            "fullSummary" false
            "showMeta" false
            "showTags" false
            "showCategories" false
            }}
        {{ range sort .Pages "Params.end_date" "desc" }}
            {{ .Scratch.Set "cardConfig" $cardConfig }}
            {{ partial "card.html" . }}
        {{ end }}
    </menu>
{{ end }}
{{ define "footer" }}
{{ partial "meta-tag_nav.html" . }}
{{ end }}