23 lines
634 B
HTML
23 lines
634 B
HTML
{{ $imageData := partial "image/reflect.html" . }}
|
|
{{- with $imageData.image -}}
|
|
<figure class="captioned-image lightbox">
|
|
<a
|
|
href="{{- .RelPermalink -}}"
|
|
data-pswp-width="{{- .Width -}}"
|
|
data-pswp-height="{{- .Height -}}"
|
|
>
|
|
<img
|
|
src="{{- .RelPermalink -}}"
|
|
width="{{- .Width -}}"
|
|
height="{{- .Height -}}"
|
|
loading="lazy"
|
|
{{ with $imageData.title }}title="{{- . -}}"{{ end }}
|
|
{{ with $imageData.alt }}alt="{{- . -}}"{{ end }}
|
|
/>
|
|
</a>
|
|
{{ with $imageData.title }}
|
|
<figcaption>{{ . }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|
|
{{- end -}}
|