Added icon.

This commit is contained in:
2024-05-29 00:39:11 +02:00
parent 5965e07259
commit c4f9ab96fc
3 changed files with 7 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
{{$size := get .Content "size"}}
{{$md := get .Content "markdown"}}
<section>
{{if $size}}
@@ -9,5 +10,9 @@
<h2>{{copy .Page .Content "headline"}}</h2>
{{end}}
{{html (copy .Page .Content "text")}}
{{if $md}}
{{markdown $md .}}
{{else}}
{{html (copy .Page .Content "text")}}
{{end}}
</section>