bunteshaus.de/themes/buha/layouts/_default/imprint.html

28 lines
727 B
HTML
Raw Normal View History

2021-10-23 22:20:01 +02:00
{{ define "title" }}
{{ $name := "imprint" }}
{{ if lower $name | i18n }}
{{ $name = lower $name | i18n }}
{{ end }}
2022-04-05 14:49:37 +02:00
<h1>{{ $name }}</h1>
2021-10-23 22:20:01 +02:00
{{ end }}
{{ define "main" }}
{{ if .Resources.ByType "image" }}
<div style="clear:both;"></div>
<div style="max-width: 25ch; padding: 0 0.8em 0.2em 0; float: right;">
{{ range .Resources.ByType "image" }}
<a href="{{- .Permalink -}}"><img src="{{- .Permalink -}}"/></a>
{{- end -}}
{{ end }}
{{ if .Resources.ByType "image" }}
</div>
{{ end }}
2022-04-06 02:39:08 +02:00
<article>
2022-04-06 21:49:18 +02:00
{{ partial "contentlayouts/contact" }}
2021-10-23 22:20:01 +02:00
{{ i18n "executive" }}: {{ site.Params.imprintdata.executive }}
{{ .Content }}
2022-04-06 02:39:08 +02:00
</article>
{{ end }}