layouts/shortcodes/card.html
{{$class := $.Get "class"}} {{ $content_type := .Get "content" | default "text" }}
{{ with $.Get "header" }} {{ if eq $content_type "text" }} {{ $.Get "header" | markdownify }} {{ end }} {{ if eq $content_type "html" }} {{ $.Get "header"| htmlUnescape | safeHTML }} {{ end }} {{ end }} {{ with $.Get "title" }}
{{ end }} {{ with $.Get "subtitle" }}
{{ end }} {{ with $.Inner }} {{ if eq $content_type "text" }} {{ $.Inner | markdownify }} {{ end }} {{ if eq $content_type "html" }} {{ $.Inner | htmlUnescape | safeHTML }} {{ end }} {{ end }} {{ with $.Get "footer" }} {{ if eq $content_type "text" }} {{ $.Get "footer" | markdownify }} {{ end }} {{ if eq $content_type "html" }} {{ $.Get "footer"| htmlUnescape | safeHTML }} {{ end }} {{ end }}