mirror of
https://github.com/Kugelschieber/marvinblum.git
synced 2026-01-18 14:50:27 +00:00
19 lines
418 B
HTML
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>
|