Files
kestrelsnest-blog/layouts/_default/_markup/render-image.html
Eric Wagoner 9c53b0edf1 Add weeknote for March 28-April 3, 2026; update now and upcoming pages
Render hook updated to wrap images with titles in <figure>/<figcaption>
instead of using title attributes, giving visible captions and cleaner
accessibility. Applies retroactively to all existing posts.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-12 23:45:28 -04:00

9 lines
225 B
HTML

{{- with .Title -}}
<figure>
<img src="{{ $.Destination | safeURL }}" alt="{{ $.Text }}" />
<figcaption>{{ . }}</figcaption>
</figure>
{{- else -}}
<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" />
{{- end -}}