mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 17:25:32 +00:00
23 lines
380 B
Plaintext
23 lines
380 B
Plaintext
{{ $model := . }}
|
|
|
|
{{ if .entries }}
|
|
<h2>Bände nach Riehentiteln</h2>
|
|
{{ range $id, $r := .series }}
|
|
<div>
|
|
{{ template "_reihe" (Arr $model $r) }}
|
|
</div>
|
|
{{ end }}
|
|
{{ else }}
|
|
<div>Keine Bände</div>
|
|
{{ end }}
|
|
|
|
{{ if .contents }}
|
|
<h2>Inhalte</h2>
|
|
{{ range $id, $c := .contents }}
|
|
<div>
|
|
{{ $c.PreferredTitle }}
|
|
{{ $c.Numbering }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|