forked from Bunteshaus/bunteshaus.de
15 lines
492 B
HTML
15 lines
492 B
HTML
{{ $text := "solo" }}
|
|
<section>
|
|
<div class="articleinner">
|
|
<div class="articletext {{ $text }}">
|
|
{{ if .partial_before }}
|
|
{{ partial .partial_before (dict "context" .context "pic" .pic) }}
|
|
{{ end }}
|
|
{{ if in .context.File "imprint" }}
|
|
{{ if i18n "executive" }}{{ i18n "executive" }}{{ else }}{{ "Executive" }}{{ end }}: {{ .context.Site.Params.imprintdata.executive }}
|
|
{{ end }}
|
|
{{ .content }}
|
|
</div>
|
|
</div>
|
|
</section>
|