mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
13 lines
429 B
HTML
13 lines
429 B
HTML
|
{{- $context := .context }}
|
||
|
{{- $file := .file }}
|
||
|
{{- $showFirstHeading := .showfirstheading | default true }}
|
||
|
{{- if eq (printf "%T" $showFirstHeading) "string" }}
|
||
|
{{- $showFirstHeading = (eq $showFirstHeading "true") }}
|
||
|
{{- end }}
|
||
|
{{- if not $showFirstHeading }}<div class="include hide-first-heading">{{ end }}
|
||
|
{{- with $context }}
|
||
|
|
||
|
{{ $file | readFile | safeHTML }}
|
||
|
|
||
|
{{- if not $showFirstHeading }}</div>{{ end }}
|
||
|
{{- end }}
|