From 8c84a8d02888b6d8c088ffe3c4406dffef28bbe3 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 21 Dec 2022 15:53:02 +0100 Subject: [PATCH] chore: fix img shortcode formatting (#564) --- layouts/shortcodes/img.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/layouts/shortcodes/img.html b/layouts/shortcodes/img.html index f76eaf2..e047e2e 100644 --- a/layouts/shortcodes/img.html +++ b/layouts/shortcodes/img.html @@ -9,19 +9,19 @@ {{- $isSVG := (eq .MediaType.SubType "svg") }} {{- $origin := .Permalink }} - {{ if $isSVG }} + {{- if $isSVG }} {{- $data.SetInMap "size" "profile" "180" }} {{- $data.SetInMap "size" "tiny" "320" }} {{- $data.SetInMap "size" "small" "600" }} {{- $data.SetInMap "size" "medium" "1200" }} {{- $data.SetInMap "size" "large" "1800" }} - {{ else }} + {{- else }} {{- $data.SetInMap "size" "profile" (.Fill "180x180 Center").Permalink }} {{- $data.SetInMap "size" "tiny" (.Resize "320x").Permalink }} {{- $data.SetInMap "size" "small" (.Resize "600x").Permalink }} {{- $data.SetInMap "size" "medium" (.Resize "1200x").Permalink }} {{- $data.SetInMap "size" "large" (.Resize "1800x").Permalink }} - {{ end }} + {{- end }}
@@ -39,7 +39,6 @@ {{- else }} srcset="{{ $size.small }} 600w, {{ $size.medium }} 1200w" sizes="100vw" {{- end }} - /> {{- end }}