From e77051ccc4b47951bfa4fde2be436b1bb2fb113b Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sun, 28 Apr 2024 17:33:09 +0200 Subject: use https://github.com/nunocoracao/blowfish.git --- .../layouts/partials/hero/thumbAndBackground.html | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 themes/blowfish/layouts/partials/hero/thumbAndBackground.html (limited to 'themes/blowfish/layouts/partials/hero/thumbAndBackground.html') diff --git a/themes/blowfish/layouts/partials/hero/thumbAndBackground.html b/themes/blowfish/layouts/partials/hero/thumbAndBackground.html new file mode 100644 index 0000000..4b807ac --- /dev/null +++ b/themes/blowfish/layouts/partials/hero/thumbAndBackground.html @@ -0,0 +1,70 @@ +{{ $disableImageOptimization := .Page.Site.Params.disableImageOptimization | default false }} + +{{- $images := .Resources.ByType "image" -}} +{{- $background := $images.GetMatch "*background*" -}} +{{- if not $background }}{{ with .Site.Params.defaultBackgroundImage }}{{ $background = resources.Get . }}{{ end }}{{ end -}} +{{- if not $background }}{{ $background = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}} +{{- if not $background }}{{ $background = $images.GetMatch "*feature*" }}{{ end -}} +{{- $featured := $images.GetMatch "*feature*" -}} +{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}} +{{ if .Params.featureimage }} +{{- $url:= .Params.featureimage -}} +{{- if not $featured }}{{ $featured = resources.GetRemote $url }}{{ end -}} +{{ end }} +{{- if not $featured }}{{ $featured = $images.GetMatch "*background*" }}{{ end -}} +{{- if not $featured }}{{ with .Site.Params.defaultBackgroundImage }}{{ $featured = resources.Get . }}{{ 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 $featured -}} +{{ if or $disableImageOptimization (strings.HasSuffix . ".svg")}} +{{ with . }} +
+{{ end }} +{{ else }} +{{ with .Resize "1200x" }} +
+{{ end }} +{{ end }} +{{- end -}} + +{{- with $background -}} + +{{ if or $disableImageOptimization (strings.HasSuffix . ".svg")}} +{{ with . }} +
+
+
+
+
+
{{ end }} +{{ else }} +{{ with .Resize "1200x" }} +
+
+
+
+
+
{{ end }} +{{ end }} + +{{- end -}} + +{{ if $shouldBlur | default false }} +
+ +{{ end }} + -- cgit v1.2.3