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

12 lines
446 B
HTML
Raw Normal View History

<figure>
<a href="{{ .Destination | safeURL }}" class="lbox">
2020-12-30 15:23:14 +01:00
<noscript>
<img src="{{ .Destination | safeURL }}" {{ with .Text }} alt="{{ . }}"{{ end }} {{ with .Title}} title="{{ . }}"{{ end }}>
</noscript>
2020-12-14 08:57:46 +01:00
<img class="lazyload" data-src="{{ .Destination | safeURL }}" {{ with .Text }} alt="{{ . }}"{{ end }} {{ with .Title}} title="{{ . }}"{{ end }}>
</a>
{{ with .Title }}
<figcaption>{{ . }}</figcaption>
{{ end }}
</figure>