smol/layouts/_default/_markup/render-image.html

10 lines
207 B
HTML
Raw Normal View History

2025-01-13 13:25:13 +00:00
{{ $img := imageConfig (add "/static/" (.Destination | safeURL)) }}
2020-08-05 19:52:27 +00:00
2025-01-13 19:08:53 +00:00
<img
src="{{ .Destination | safeURL }}"
alt="{{ .Text }}"
loading="lazy"
width="{{ $img.Width }}"
height="{{ $img.Height }}"
/>