summaryrefslogtreecommitdiff
path: root/layouts/_default/_markup/render-image.html
blob: f4f9389e8737427e0b9becd45fc35c4018f5129c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<figure>
  <a class="paragraph-image">
    <img src="{{ .Destination | safeURL }}" data-action="zoom" alt="{{ .Text }}" {{ with .Title }} title="{{ . }}"{{ end }} loading="lazy" decoding="async">
  </a>
  {{ with .Title }}
  <figcaption class="image-caption">
      {{- . | safeHTML -}}
  </figcaption>
  {{ end }}
</figure>