{{ range . }}
{{/* Image on Left */}}
{{if .customBorder}}
{{end}} {{ $imgClass := "w-fit md:max-w-[650px] lg:max-w-[500px]" }} {{ if not .noShadow }} {{ $imgClass = (print $imgClass " shadow-2xl") }} {{ end }} {{ if .leftImg }} {{ $imgClass = (print $imgClass " lg:ml-auto") }} {{ else }} {{ $imgClass = (print $imgClass " lg:mr-auto") }} {{ end }} {{ $context := (dict "context" . "Destination" (print "/assets/images/" .img) "Text" .alt "Class" (print $imgClass) )}} {{- partial "compressed-image.html" $context }} {{if .customBorder}}
{{end}}

{{ .headline | markdownify}}

{{ .text | markdownify}} {{partial "render-content" .sections}} {{if .list}}
    {{range .}}
  • {{.}}
  • {{end}}
{{end}}
{{/* Default Image on Right */}}
{{ end }}