{{ $disableImageOptimization := .Page.Site.Params.disableImageOptimization | default false }} {{ $images := .Resources.ByType "image" }} {{ $background := $images.GetMatch "*background*" }} {{ $backgroundURL := "" }} {{ if not $background }} {{ with .Site.Params.defaultBackgroundImage }} {{ if or (strings.HasPrefix . "http:") (strings.HasPrefix . "https:") }} {{ $background = resources.GetRemote . }} {{ else }} {{ $background = resources.Get . }} {{ end }} {{ end }} {{ end }} {{ range slice "*cover*" "*thumbnail*" "*feature*" }} {{ if not $background }}{{ $background = $images.GetMatch . }}{{ end }} {{ end }} {{ with $background }} {{ $backgroundURL = .RelPermalink }} {{ if not (or $disableImageOptimization (eq .MediaType.SubType "svg")) }} {{ $size := (print ($.Site.Params.backgroundImageWidth | default "1200") "x") }} {{ $backgroundURL = (.Resize $size).RelPermalink }} {{ end }} {{ end }} {{ $featured := "" }} {{ $featuredURL := "" }} {{ if .Params.featureimage }} {{ $url := .Params.featureimage }} {{ if or (strings.HasPrefix $url "http:") (strings.HasPrefix $url "https:") }} {{ $featured = resources.GetRemote $url }} {{ else }} {{ $featured = resources.Get $url }} {{ end }} {{ end }} {{ if not $featured }} {{ $images := $.Resources.ByType "image" }} {{ range slice "*feature*" "*cover*" "*thumbnail*" "*background*" }} {{ if not $featured }}{{ $featured = $images.GetMatch . }}{{ end }} {{ end }} {{ end }} {{ if not $featured }} {{ with .Site.Params.defaultFeaturedImage }} {{ if or (strings.HasPrefix . "http:") (strings.HasPrefix . "https:") }} {{ $featured = resources.GetRemote . }} {{ else }} {{ $featured = resources.Get . }} {{ end }} {{ end }} {{ end }} {{ with $featured }} {{ $featuredURL = .RelPermalink }} {{ if not (or $disableImageOptimization (eq .MediaType.SubType "svg")) }} {{ $size := (print ($.Site.Params.backgroundImageWidth | default "1200") "x") }} {{ $featuredURL = (.Resize $size).RelPermalink }} {{ end }} {{ end }} {{ $isParentList := eq (.Scratch.Get "scope") "list" }} {{ $shouldBlur := $.Params.layoutBackgroundBlur | default (or (and ($.Site.Params.article.layoutBackgroundBlur | default true) (not $isParentList)) (and ($.Site.Params.list.layoutBackgroundBlur | default true) ($isParentList)) ) }} {{ with $featuredURL }}