mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-29 00:55:32 +00:00
27 lines
617 B
Cheetah
27 lines
617 B
Cheetah
{{ define "body" }}
|
|
{{ $y := .model.Year }}
|
|
|
|
{{ range $year := .model.AvailableYears }}
|
|
<a href="/{{ $year }}" aria-active="{{ eq $year $y }}">{{ $year }}</a>
|
|
{{ end }}
|
|
{{ range $index, $month := .model.Issues }}
|
|
|
|
<!-- Month Header -->
|
|
{{ $first := index $month 0 }}
|
|
<h2>{{ index $first.Month 1 }}</h2>
|
|
|
|
<!-- Issues -->
|
|
{{ range $issue := $month }}
|
|
<a href="/{{ $y }}/{{ $issue.Number.No }}">
|
|
<div>
|
|
{{ $issue.Number.No }}
|
|
</div>
|
|
<div>
|
|
{{ index $issue.Weekday 1 }}
|
|
</div>
|
|
<div>{{ $issue.Day }}.{{ index $issue.Month 2 }}.</div>
|
|
</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|