1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 18:26:38 -04:00
Files
jarv.is/layouts/shortcodes/image.html

16 lines
343 B
HTML

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