refactor: remove some usages of default in template

No longer needed thanks to Hugo's configuration merge
This commit is contained in:
Jimmy Cai
2022-06-12 13:51:46 +00:00
committed by GitHub
parent de22945155
commit 751d7d1753
8 changed files with 10 additions and 10 deletions
@@ -9,7 +9,7 @@
{{- $Height := $image.resource.Height -}}
{{- $Srcset := "" -}}
{{- if (default true .Page.Site.Params.imageProcessing.cover.enabled) -}}
{{- if .Page.Site.Params.imageProcessing.cover.enabled -}}
{{- $thumbnail := $image.resource.Resize "800x" -}}
{{- $thumbnailRetina := $image.resource.Resize "1600x" -}}
{{- $Srcset = printf "%s 800w, %s 1600w" $thumbnail.RelPermalink $thumbnailRetina.RelPermalink -}}