mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 17:25:32 +00:00
Lesekabinett & Startseite
This commit is contained in:
8
views/routes/redaktion/danksagungen/body.gohtml
Normal file
8
views/routes/redaktion/danksagungen/body.gohtml
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="container-normal relative">
|
||||
<div class="text">
|
||||
{{ if .record.Title }}<h1 class="mb-12">{{ .record.Title }}</h1>{{ end }}
|
||||
<div class="text [&_*]:!indent-0 [&_p]:mt-2">
|
||||
{{ Safe .record.Text }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1
views/routes/redaktion/danksagungen/head.gohtml
Normal file
1
views/routes/redaktion/danksagungen/head.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
<title>{{ .site.title }} – {{ .record.Title }}</title>
|
||||
8
views/routes/redaktion/dokumentation/body.gohtml
Normal file
8
views/routes/redaktion/dokumentation/body.gohtml
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="container-normal relative">
|
||||
<div class="text">
|
||||
{{ if .record.Title }}<h1 class="mb-12">{{ .record.Title }}</h1>{{ end }}
|
||||
<div class="text">
|
||||
{{ Safe .record.Text }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1
views/routes/redaktion/dokumentation/head.gohtml
Normal file
1
views/routes/redaktion/dokumentation/head.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
<title>{{ .site.title }} – {{ .record.Title }}</title>
|
||||
5
views/routes/redaktion/einfuehrung/body.gohtml
Normal file
5
views/routes/redaktion/einfuehrung/body.gohtml
Normal file
@@ -0,0 +1,5 @@
|
||||
<div class="container-normal">
|
||||
<div class="text mt-6">
|
||||
{{ Safe .record.Text }}
|
||||
</div>
|
||||
</div>
|
||||
1
views/routes/redaktion/einfuehrung/head.gohtml
Normal file
1
views/routes/redaktion/einfuehrung/head.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
<title>{{ .site.title }} – {{ .record.Title }}</title>
|
||||
8
views/routes/redaktion/kontakt/body.gohtml
Normal file
8
views/routes/redaktion/kontakt/body.gohtml
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="container-normal relative">
|
||||
<div class="text">
|
||||
{{ if .record.Title }}<h1 class="mb-12">{{ .record.Title }}</h1>{{ end }}
|
||||
<div class="text [&_*]:!indent-0 [&_p]:mt-2">
|
||||
{{ Safe .record.Text }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1
views/routes/redaktion/kontakt/head.gohtml
Normal file
1
views/routes/redaktion/kontakt/head.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
<title>{{ .site.title }} – {{ .record.Title }}</title>
|
||||
8
views/routes/redaktion/lesekabinett/body.gohtml
Normal file
8
views/routes/redaktion/lesekabinett/body.gohtml
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="container-normal relative">
|
||||
<div class="text indented">
|
||||
{{ if .record.Title }}<h1 class="mb-12">{{ .record.Title }}</h1>{{ end }}
|
||||
<div class="text">
|
||||
{{ Safe .record.Text }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1
views/routes/redaktion/lesekabinett/head.gohtml
Normal file
1
views/routes/redaktion/lesekabinett/head.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
<title>{{ .site.title }} – {{ .record.Title }}</title>
|
||||
20
views/routes/redaktion/literatur/body.gohtml
Normal file
20
views/routes/redaktion/literatur/body.gohtml
Normal file
@@ -0,0 +1,20 @@
|
||||
{{ $toc := TOCFromHTML .record.Text }}
|
||||
|
||||
|
||||
<div class="container-normal relative">
|
||||
<div class="text ">
|
||||
{{ if .record.Title }}<h1 class="mb-12">{{ .record.Title }}</h1>{{ end }}
|
||||
<div class="flex flex-row gap-x-6 justify-between ">
|
||||
<div class="grow shrink-0 text indented">
|
||||
{{ Safe .record.Text }}
|
||||
</div>
|
||||
<div>
|
||||
{{- if $toc -}}
|
||||
<div class="xl:sticky xl:top-8 grow-0">
|
||||
{{- template "_toc" $toc -}}
|
||||
</div>
|
||||
{{- end -}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1
views/routes/redaktion/literatur/head.gohtml
Normal file
1
views/routes/redaktion/literatur/head.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
<title>{{ .site.title }} – {{ .record.Title }}</title>
|
||||
Reference in New Issue
Block a user