2023-01-05 12:23:21 -06:00
|
|
|
{{ $disableImageOptimization := .Page.Site.Params.disableImageOptimization | default false }}
|
|
|
|
|
2022-10-16 10:49:52 -05:00
|
|
|
{{- $images := .Resources.ByType "image" -}}
|
|
|
|
{{- $featured := $images.GetMatch "*feature*" -}}
|
|
|
|
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
|
2023-03-11 04:04:40 -06:00
|
|
|
{{- $alt := .Page.Title -}}
|
|
|
|
{{- with .Page.Params.alt }}{{ $alt = . }}{{ end -}}
|
2022-10-16 10:49:52 -05:00
|
|
|
{{- with $featured -}}
|
2023-01-05 12:23:21 -06:00
|
|
|
{{ if $disableImageOptimization }}
|
|
|
|
{{ with . }}
|
2023-03-11 04:04:40 -06:00
|
|
|
<img class="w-full rounded-lg single_hero_round nozoom" alt="{{ $alt }}" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
|
2023-01-05 12:23:21 -06:00
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
{{ with .Resize "1200x" }}
|
2023-03-11 04:04:40 -06:00
|
|
|
<img class="w-full rounded-lg single_hero_round nozoom" alt="{{ $alt }}" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
|
2023-01-05 12:23:21 -06:00
|
|
|
{{ end }}
|
2022-10-16 10:49:52 -05:00
|
|
|
{{ end }}
|
|
|
|
{{- end -}}
|