redstrate.com/themes/red/layouts/shortcodes/insert-pic.html

15 lines
437 B
HTML
Raw Normal View History

2023-04-16 13:10:06 -04:00
{{ $name := .Get 0 }}
{{ $alt := .Get 1 }}
{{ $path := printf "pics/%s" $name}}
{{ with resources.Get $path }}
2025-01-03 13:13:22 -05:00
<picture>
{{ $avif_path := replace . ".jpg" ".avif "}}
{{ with resources.Get (strings.TrimSpace $avif_path) }}
<source srcset="{{ .RelPermalink }}" type="image/avif">
{{ end }}
2024-02-19 17:24:54 -05:00
<img alt="{{ $alt }}" class="gallery-img page-pic" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
2025-01-03 13:13:22 -05:00
</picture>
2023-04-16 13:10:06 -04:00
{{ end }}