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