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

20 lines
518 B
HTML
Raw Normal View History

2020-01-31 18:46:28 +08:00
<figure>
<img
2020-01-31 22:53:04 +08:00
{{- $res := resources.Get "svg/loading.svg" | minify -}}
2020-01-31 18:46:28 +08:00
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>