Files
web-log/container/site/layouts/shortcodes/image.html
T
2025-07-05 15:36:34 +00:00

16 lines
353 B
HTML

{{ $src := .Get "src" }}
{{ $alt := .Get "alt" }}
{{ $slug := .Page.Slug }}
<figure>
<img
src="{{ site.Params.filesBase }}/{{ $slug }}/{{ $src }}"
alt="{{ $alt }}"
loading="lazy"
decoding="async"
width="{{ .Get "width" | default "800" }}" />
{{ with .Get "caption" }}
<figcaption>{{ . }}</figcaption>
{{ end }}
</figure>