mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
Allow svg alts in <picture> shortcode
This commit is contained in:
parent
93846a469b
commit
a57f694bb4
1 changed files with 15 additions and 0 deletions
|
@ -1,10 +1,19 @@
|
|||
{{ $light_svg := resources.GetMatch (printf "/p/%s.svg" (.Get "name")) -}}
|
||||
{{ $light_png := resources.GetMatch (printf "/p/%s.png" (.Get "name")) -}}
|
||||
{{ $light_webp := resources.GetMatch (printf "/p/%s.webp" (.Get "name")) -}}
|
||||
{{ $light_avif := resources.GetMatch (printf "/p/%s.avif" (.Get "name")) -}}
|
||||
{{ $dark_svg := resources.GetMatch (printf "/p/%s_dark.svg" (.Get "name")) -}}
|
||||
{{ $dark_png := resources.GetMatch (printf "/p/%s_dark.png" (.Get "name")) -}}
|
||||
{{ $dark_webp := resources.GetMatch (printf "/p/%s_dark.webp" (.Get "name")) -}}
|
||||
{{ $dark_avif := resources.GetMatch (printf "/p/%s_dark.avif" (.Get "name")) -}}
|
||||
<picture>
|
||||
{{ with $dark_svg -}}
|
||||
{{ $dark_svg_src := . | resources.Fingerprint "md5" -}}
|
||||
<source
|
||||
srcset="{{ $dark_svg_src.RelPermalink }}"
|
||||
type="image/svg+xml"
|
||||
media="(prefers-color-scheme: dark)">
|
||||
{{ end -}}
|
||||
{{ with $dark_avif -}}
|
||||
{{ $dark_avif_src := . | resources.Fingerprint "md5" -}}
|
||||
<source
|
||||
|
@ -26,6 +35,12 @@
|
|||
type="image/png"
|
||||
media="(prefers-color-scheme: dark)">
|
||||
{{ end -}}
|
||||
{{ with $light_svg -}}
|
||||
{{ $light_svg_src := . | resources.Fingerprint "md5" -}}
|
||||
<source
|
||||
srcset="{{ $light_svg_src.RelPermalink }}"
|
||||
type="image/svg+xml">
|
||||
{{ end -}}
|
||||
{{ with $light_avif -}}
|
||||
{{ $light_avif_src := . | resources.Fingerprint "md5" -}}
|
||||
<source
|
||||
|
|
Loading…
Reference in a new issue