hugo-theme-relearn/layouts/shortcodes/include.html

10 lines
419 B
HTML
Raw Normal View History

{{- $file := .Get "file" | default (.Get 0) }}
{{- $showFirstHeading := .Get "showfirstheading" | default (.Get 1) | default true }}
{{- if eq (printf "%T" $showFirstHeading) "string" }}
{{- $showFirstHeading = (eq $showFirstHeading "true") }}
{{- end }}
{{- if not $showFirstHeading }}<div class="include hide-first-heading">{{ end }}
2021-10-07 19:19:07 +00:00
{{ $file | readFile | safeHTML }}
{{- if not $showFirstHeading }}</div>{{ end }}