forked from Bunteshaus/bunteshaus.de
23 lines
891 B
HTML
23 lines
891 B
HTML
{{ define "title" }}
|
|
<h1>{{ if (i18n .Title (dict "Count" 0))}}{{ i18n .Title (dict "Count" 0) }}{{ else }}{{ .Title }}{{ end }}</h1>
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
{{ $partial_before := "" }}
|
|
{{ $partial := "layout/article" }}
|
|
{{ $pic := "true" }}
|
|
{{ if eq .Params.tool "generator" }}
|
|
{{ $partial = "layout/generator" }}
|
|
{{ else if eq .Params.tool "nottranslated" }}
|
|
{{ $partial = "layout/nottranslated" }}
|
|
{{ else if or (eq .Layout "contact") (eq .Layout "imprint") }}
|
|
{{ $partial_before = "snippets/contact" }}
|
|
{{ $partial = printf "layout/%s" .Layout }}
|
|
{{ else if eq .Layout "archive" }}
|
|
{{ $partial = printf "layout/%s" .Layout }}
|
|
{{ end }}
|
|
<article>
|
|
{{ partial $partial (dict "context" . "pic" $pic "content" .Content "partial_before" $partial_before "type" "article") }}
|
|
</article>
|
|
{{ end }}
|