Skip to content

Commit

Permalink
chore: fix img shortcode formatting (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoxys authored Dec 21, 2022
1 parent 61913ac commit 8c84a8d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions layouts/shortcodes/img.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}


<div class="flex justify-center">
Expand All @@ -39,7 +39,6 @@
{{- else }}
srcset="{{ $size.small }} 600w, {{ $size.medium }} 1200w" sizes="100vw"
{{- end }}

/>
{{- end }}
<img
Expand Down

0 comments on commit 8c84a8d

Please sign in to comment.