mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
11 lines
No EOL
475 B
HTML
11 lines
No EOL
475 B
HTML
<figure>
|
|
{{- /* Lazyload */ -}}
|
|
{{- $loading := resources.Get "svg/loading.svg" | minify -}}
|
|
<img src="{{ $loading.RelPermalink | safeURL }}" data-sizes="auto" data-src="{{ .Destination | safeURL }}" alt="{{ .Text }}"{{ with .Title }} title="{{ . }}"{{ end }} class="lazyload">
|
|
{{- $caption := .Title | default .Text -}}
|
|
{{- with $caption -}}
|
|
<figcaption class="image-caption">
|
|
{{- . -}}
|
|
</figcaption>
|
|
{{- end -}}
|
|
</figure> |