2024-04-28 17:33:09 +02:00
|
|
|
{{ $disableImageOptimization := .Page.Site.Params.disableImageOptimization | default false }}
|
|
|
|
|
|
|
|
{{- $images := .Resources.ByType "image" -}}
|
|
|
|
{{- $featured := $images.GetMatch "*background*" -}}
|
|
|
|
{{- if not $featured }}{{ $featured = $images.GetMatch "*feature*" }}{{ end -}}
|
|
|
|
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
|
|
|
|
|
|
|
|
{{ if and .Params.featureimage (not $featured) }}
|
|
|
|
{{- $url:= .Params.featureimage -}}
|
|
|
|
{{ $featured = resources.GetRemote $url }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{- if not $featured }}
|
|
|
|
{{ with .Site.Params.defaultBackgroundImage }}
|
|
|
|
{{ if or (strings.HasPrefix . "http:") (strings.HasPrefix . "https:") }}
|
|
|
|
{{ $featured = resources.GetRemote . }}
|
|
|
|
{{ else }}
|
|
|
|
{{ $featured = resources.Get . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end -}}
|
|
|
|
|
|
|
|
{{- with $featured -}}
|
|
|
|
{{ if or $disableImageOptimization (strings.HasSuffix $featured ".svg")}}
|
|
|
|
{{ 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 }}
|
2024-08-28 22:54:34 +02:00
|
|
|
{{ with .Resize (print ($.Site.Params.backgroundImageWidth | default "1200") "x") }}
|
2024-04-28 17:33:09 +02:00
|
|
|
<div class="w-full h-36 md:h-56 lg:h-72 single_hero_basic nozoom" style="background-image:url({{ .RelPermalink }});"></div>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{- end -}}
|