Files
marvinblum/tpl/text.html
2024-05-29 00:39:11 +02:00

19 lines
418 B
HTML

{{$size := get .Content "size"}}
{{$md := get .Content "markdown"}}
<section>
{{if $size}}
{{html (fmt "<%s>" $size)}}
{{copy .Page .Content "headline"}}
{{html (fmt "</%s>" $size)}}
{{else}}
<h2>{{copy .Page .Content "headline"}}</h2>
{{end}}
{{if $md}}
{{markdown $md .}}
{{else}}
{{html (copy .Page .Content "text")}}
{{end}}
</section>