summaryrefslogtreecommitdiff
path: root/layouts/_default/_markup/render-image.html
blob: 74f6f95e6714f62a3c3f962fe04cd5fbefc88ea9 (plain)
1
2
3
4
5
6
7
8
9
{{ if .Title }}
<figure>
  <img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" />
  <figcaption>{{ .Title }}</figcaption>
</figure>
{{ else }}
<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" />
{{ end }}