Files
success/layouts/shortcodes/image.html
2025-06-23 09:42:07 -03:00

16 lines
542 B
HTML

{{ $src := .Get "src" }} {{ $alt := .Get "alt" | default "" }} {{ $class := .Get
"class" | default "" }} {{ $size := .Get "size" | default "800x" }} {{ with
.Page.Resources.GetMatch $src }} {{ $resized := .Resize $size }} {{ $webp :=
$resized | images.Convert "webp" }}
<img
src="{{ $webp.RelPermalink }}"
alt="{{ $alt }}"
class="{{ $class }}"
width="{{ $webp.Width }}"
height="{{ $webp.Height }}"
loading="lazy"
/>
{{ else }}
<img src="{{ $src }}" alt="{{ $alt }}" class="{{ $class }}" loading="lazy" />
{{ end }}