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 -}}
|
|
|
|
{{- with $featured -}}
|
2023-01-05 12:23:21 -06:00
|
|
|
{{ if $disableImageOptimization }}
|
|
|
|
{{ with . }}
|
|
|
|
<div class="w-full h-36 md:h-56 lg:h-72 single_hero_basic nozoom" style="background-image:url({{ .RelPermalink }});"></div>
|
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
{{ with .Resize "1200x" }}
|
|
|
|
<div class="w-full h-36 md:h-56 lg:h-72 single_hero_basic nozoom" style="background-image:url({{ .RelPermalink }});"></div>
|
|
|
|
{{ end }}
|
2022-10-16 10:49:52 -05:00
|
|
|
{{ end }}
|
|
|
|
{{- end -}}
|