{{ define "title" }} {{ $name := .Title }} {{ if lower $name | i18n }} {{ $name = lower $name | i18n }} {{ end }}

{{ $name }}

{{ end }} {{ define "main" }} {{ if eq .Type "tools" }} {{ $tool := printf "misc/%s" .Params.tool }} {{ partial $tool . }} {{ end }} {{ if eq .Params.tool "not_translated" }}
{{ partial "misc/nottranslated.html" . }}
{{ else if eq .Params.tool "generator" }} {{ partial "misc/generator.html" . }} {{ else }}
{{ partial "contentlayouts/article.html" (dict "context" . "type" "article") }}
{{ end }} {{ end }} {{ define "ab" }} {{ if ne .Section "misc" }}
Verfasst am
{{ .Date | time.Format ":date_full" }}
{{ if ne .Date .Lastmod }}
zuletzt geƤndert
{{ .Lastmod | time.Format ":date_full" }}
{{ end }}
{{ end }} {{ end }} {{ define "sidebar" }} {{- partial "contentlayouts/menu.html" . }} {{ end }}