bunteshaus.de/themes/buha/layouts/_default.old/contact.html

17 lines
413 B
HTML
Raw Normal View History

2021-10-23 22:20:01 +02:00
{{ define "title" }}
{{ $name := "contact" }}
{{ 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" }}
2022-04-07 16:31:15 +02:00
{{ if site.Params.debug }}contact.html{{ end }}
2022-04-05 17:50:09 +02:00
{{- $pic := index (.Resources.ByType "image") 0 -}}
<article>
2022-04-06 00:02:18 +02:00
{{ partial "contentlayouts/article.html" (dict "context" . "type" "contact") }}
2022-04-05 17:50:09 +02:00
</article>
2022-04-06 00:02:18 +02:00
{{ end }}