1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 02:58:28 -04:00

15 lines
356 B
HTML

{{ if .Get "caption"}}
<figure>
<picture>
{{ else }}
<p>
{{ end }}
<img src="{{ .Get "src" }}" alt="{{ .Get "alt" }}"{{ if .Get "width"}} width="{{ .Get "width" }}"{{ end }}{{ if .Get "caption"}} title="{{ .Get "caption"}}"{{ end }}>
{{ if .Get "caption"}}
</picture>
<figcaption>{{ .Get "caption" }}</figcaption>
</figure>
{{ else }}
</p>
{{ end }}