Personen DB Abfragen + Seiten

This commit is contained in:
Simon Martens
2025-02-15 23:33:15 +01:00
parent 0aa8511ef0
commit e8edefa4b4
28 changed files with 949 additions and 65 deletions

View File

@@ -0,0 +1,22 @@
{{ $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 }}