mirror of
https://github.com/Theodor-Springmann-Stiftung/lenz-web.git
synced 2025-10-28 16:55:32 +00:00
16 lines
320 B
Plaintext
16 lines
320 B
Plaintext
{{ $model := . }}
|
|
|
|
{{- if .years -}}
|
|
{{- range $y := .years -}}
|
|
<div>
|
|
{{- printf "%d " $y -}}
|
|
{{- $letters := index $model.yearmap $y -}}
|
|
{{- len $letters }}
|
|
{{ range $l := $letters -}}
|
|
<div>{{ $l.Letter }}</div>
|
|
<div>{{ $l.Earliest.Text -}}</div>
|
|
{{- end -}}
|
|
</div>
|
|
{{- end -}}
|
|
{{- end -}}
|