sat-sw-website/themes/minimal-theme/layouts/shortcodes/content.html
2023-12-10 18:11:02 +01:00

8 lines
266 B
HTML

{{ $file := .Get 0 }}
{{ $full_path := delimit (slice .Page.RelPermalink $file) "" }}
{{ if strings.HasSuffix $file ".md" }}
{{ $full_path | readFile | markdownify }}
{{ else if strings.HasSuffix $file ".html" }}
{{ $full_path | readFile | safeHTML }}
{{ end }}