forked from Bunteshaus/bunteshaus.de
16 lines
365 B
HTML
16 lines
365 B
HTML
{{ define "title" }}
|
|
{{ $name := "contact" }}
|
|
{{ if lower $name | i18n }}
|
|
{{ $name = lower $name | i18n }}
|
|
{{ end }}
|
|
<h1>{{ $name }}</h1>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{- $pic := index (.Resources.ByType "image") 0 -}}
|
|
|
|
<article>
|
|
{{ partial "contentlayouts/article.html" (dict "context" . "type" "contact") }}
|
|
</article>
|
|
{{ end }}
|