{{ $alt := .Get "alt" }} {{ $content := .Inner | replaceRE "^\n" "" | replaceRE "\n$" "" | markdownify }} {{ $header := .Get "header" | markdownify }} {{ $height := .Get "height" }} {{ $image := .Get "image" }} {{ $imageclass := .Get "imageclass" }} {{ $maxheight := .Get "maxheight" }} {{ $maxwidth := .Get "maxwidth" }} {{ $page := .Page }} {{ $process := .Get "process" }} {{ $title := .Get "title" }} {{ $width := .Get "width" }}
{{ with $image }}

{{ partial "paige/img.html" (dict "alt" $alt "class" $imageclass "fetchpriority" "high" "height" $height "loading" "eager" "maxheight" $maxheight "maxwidth" $maxwidth "page" $page "process" $process "src" . "title" $title "width" $width ) }}

{{ end }} {{ with $header }}

{{ . }}

{{ end }} {{ with $content }}

{{ . }}

{{ end }}