forked from Bunteshaus/bunteshaus.de
19 lines
708 B
HTML
19 lines
708 B
HTML
{{ define "title" }}
|
|
<h1>{{ if (i18n .Title (dict "Count" 0))}}{{ i18n .Title (dict "Count" 0) }}{{ else }}{{ .Title }}{{ end }}</h1>
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
{{ partial "debug" (dict "context" . "caller" "single_chooser.html")}}
|
|
{{ $partial_before := "" }}
|
|
{{ $partial := "layout/single/article" }}
|
|
{{ $pic := "true" }}
|
|
{{ if eq .Params.tool "generator" }}
|
|
{{ $partial = "layout/single/generator" }}
|
|
{{ else if eq .Params.tool "nottranslated" }}
|
|
{{ $partial = "layout/single/nottranslated" }}
|
|
{{ end }}
|
|
<article>
|
|
{{ partial $partial (dict "context" . "pic" $pic "content" .Content "partial_before" $partial_before) }}
|
|
</article>
|
|
{{ end }}
|