forked from Bunteshaus/bunteshaus.de
12 lines
300 B
HTML
12 lines
300 B
HTML
{{ define "content" }}
|
|
{{ $partial := "" }}
|
|
{{ if eq .Params.tool "generator" }}
|
|
{{ $partial = "tools/generator" }}
|
|
{{ else if eq .Params.tool "nottranslated" }}
|
|
{{ $partial = "tools/nottranslated" }}
|
|
{{ end }}
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|