mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
20 lines
No EOL
515 B
HTML
20 lines
No EOL
515 B
HTML
<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> |