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