{{ $disableImageOptimization := site.Store.Get "disableImageOptimization" }} {{ $featured := "" }} {{ $featuredURL := "" }} {{ with .Params.featureimage }} {{ if or (strings.HasPrefix . "http:") (strings.HasPrefix . "https:") }} {{ if site.Params.hotlinkFeatureImage }} {{ $featuredURL = . }} {{ else }} {{ $featured = resources.GetRemote . }} {{ end }} {{ else }} {{ $featured = resources.Get . }} {{ end }} {{ end }} {{ if not (or $featured $featuredURL) }} {{ $images := .Resources.ByType "image" }} {{ range slice "*background*" "*feature*" "*cover*" "*thumbnail*" }} {{ if not $featured }}{{ $featured = $images.GetMatch . }}{{ end }} {{ end }} {{ end }} {{ if not (or $featured $featuredURL) }} {{ $default := site.Store.Get "defaultBackgroundImage" }} {{ if $default.url }} {{ $featuredURL = $default.url }} {{ else if $default.obj }} {{ $featured = $default.obj }} {{ end }} {{ end }} {{/* generate image URL if not hotlink */}} {{ if not $featuredURL }} {{ with $featured }} {{ $featuredURL = .RelPermalink }} {{ if not (or $disableImageOptimization (eq .MediaType.SubType "svg")) }} {{ $size := site.Store.Get "backgroundImageWidth" }} {{ $featuredURL = (.Resize $size).RelPermalink }} {{ end }} {{ end }} {{ end }} {{ with $featuredURL }}
{{ with $.Params.featureimagealt }}{{ . }}{{ else }}{{ with $.Title }}Featured image for {{ . }}{{ else }}Featured image{{ end }}{{ end }}
{{ end }}