16 lines
461 B
HTML
16 lines
461 B
HTML
|
|
{{- $page := . -}}
|
||
|
|
{{- with $page.Params.headerimage }}
|
||
|
|
<div class="header-image">
|
||
|
|
{{- if eq $page.BundleType "leaf" }}
|
||
|
|
{{- with $page.Resources.GetMatch .src }}
|
||
|
|
<img src="{{ .RelPermalink }}" />
|
||
|
|
{{- end }}
|
||
|
|
{{- else }}
|
||
|
|
{{- with resources.GetMatch (printf "**/%s" .src) }}
|
||
|
|
<img src="{{ .RelPermalink }}" />
|
||
|
|
{{- end }}
|
||
|
|
{{- end }}
|
||
|
|
{{- with .text }}<p>{{ . | markdownify }}</p>{{ end }}
|
||
|
|
</div>
|
||
|
|
{{- end }}
|