brainbaking/themes/brainbaking-minimal/layouts/_default/_markup/render-image.html

9 lines
282 B
HTML
Raw Normal View History

<figure>
<a href="{{ .Destination | safeURL }}" class="lbox">
<img src="{{ .Destination | safeURL }}" loading="lazy"{{ with .Text }} alt="{{ . }}"{{ end }}{{ with .Title}} title="{{ . }}"{{ end }}>
</a>
{{ with .Title }}
<figcaption>{{ . }}</figcaption>
{{ end }}
</figure>