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