Files
lol/layouts/_markup/render-image.html
2026-03-09 18:41:02 +00:00

28 lines
818 B
HTML

{{- $alt := .Text -}}
{{- $caption := .Title -}}
{{- $src := .Destination -}}
{{- $image := .Page.Resources.GetMatch $src -}}
{{- if $image -}}
{{- $webp := $image.Resize (printf "%dx%d webp" $image.Width $image.Height) -}}
{{- if $caption -}}
<figure>
<img src="{{ $webp.RelPermalink }}" alt="{{ $alt }}" width="{{ $webp.Width }}" height="{{ $webp.Height }}">
<figcaption>{{ $caption }}</figcaption>
</figure>
{{- else -}}
<img src="{{ $webp.RelPermalink }}" alt="{{ $alt }}" width="{{ $webp.Width }}" height="{{ $webp.Height }}">
{{- end -}}
{{- else -}}
{{- if $caption -}}
<figure>
<img src="{{ $src }}" alt="{{ $alt }}">
<figcaption>{{ $caption }}</figcaption>
</figure>
{{- else -}}
<img src="{{ $src }}" alt="{{ $alt }}">
{{- end -}}
{{- end -}}