LoveIt/layouts/_default/_markup/render-image.html

20 lines
516 B
HTML
Raw Normal View History

2020-01-31 11:46:28 +01:00
<figure>
<img
{{ $res := resources.Get "svg/loading.svg" | minify }}
src="{{ $res.RelPermalink }}"
data-sizes="auto"
data-src="{{ .Destination | safeURL }}"
alt="{{ .Text }}"
{{- with .Title -}}
title="{{ . }}"
{{- end -}}
class="lazyload"
>
<figcaption class="image-caption">
{{- if .Title -}}
{{- .Title -}}
{{- else -}}
{{- .Text -}}
{{- end -}}
</figcaption>
</figure>