1
Fork 0
theorangeone.net-legacy/layouts/shortcodes/figure.html

14 lines
301 B
HTML

{{ define "img" }}
<img src='{{ .Get "src" }}' class='{{ .Get "class" }}' alt="{{ .Inner | plainify }}" />
{{ end }}
{{ if .Inner }}
<figure>
{{ template "img" . }}
<figcaption>
<small>{{ .Inner }}</small>
</figcaption>
</figure>
{{ else }}
{{ template "img" . }}
{{ end }}