mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 02:51:52 +02:00
Fix background image mode in list view
This commit is contained in:
parent
e29a3f719f
commit
f4fd472e6e
1 changed files with 12 additions and 1 deletions
|
@ -4,11 +4,22 @@
|
||||||
{{- $featured := $images.GetMatch "*background*" -}}
|
{{- $featured := $images.GetMatch "*background*" -}}
|
||||||
{{- if not $featured }}{{ $featured = $images.GetMatch "*feature*" }}{{ end -}}
|
{{- if not $featured }}{{ $featured = $images.GetMatch "*feature*" }}{{ end -}}
|
||||||
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
|
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
|
||||||
|
|
||||||
{{ if and .Params.featureimage (not $featured) }}
|
{{ if and .Params.featureimage (not $featured) }}
|
||||||
{{- $url:= .Params.featureimage -}}
|
{{- $url:= .Params.featureimage -}}
|
||||||
{{ $featured = resources.GetRemote $url }}
|
{{ $featured = resources.GetRemote $url }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{- if not $featured }}{{ with .Site.Params.defaultBackgroundImage }}{{ $featured = resources.Get . }}{{ end }}{{ 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 -}}
|
||||||
|
|
||||||
{{ $isParentList := eq (.Scratch.Get "scope") "list" }}
|
{{ $isParentList := eq (.Scratch.Get "scope") "list" }}
|
||||||
{{ $shouldBlur := $.Params.layoutBackgroundBlur | default (or
|
{{ $shouldBlur := $.Params.layoutBackgroundBlur | default (or
|
||||||
(and ($.Site.Params.article.layoutBackgroundBlur | default true) (not $isParentList))
|
(and ($.Site.Params.article.layoutBackgroundBlur | default true) (not $isParentList))
|
||||||
|
|
Loading…
Add table
Reference in a new issue