Files
success/layouts/shortcodes/image.html
Shuvam Khamrui df0e0f9481 initial commit
2025-06-11 21:00:46 +05:30

17 lines
634 B
HTML

{{/* Usage: {{< optimize-img src="cover.jpg" alt="Cover Image" size="800x"
class="rounded shadow" >}} */}} {{ $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 }}