1
0
Fork 0
minindie/layouts/_default/_markup/render-image.html

12 lines
242 B
HTML
Raw Normal View History

2024-10-01 05:16:47 +00:00
{{ if .Title }}
<figure>
<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" />
<figcaption>{{ .Title }}</figcaption>
</figure>
{{ else }}
<figure>
<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" />
</figure>
{{ end }}