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

15 lines
301 B
HTML
Raw Normal View History

2018-05-18 19:19:04 +01:00
{{ define "img" }}
<img src='{{ .Get "src" }}' class='{{ .Get "class" }}' alt="{{ .Inner | plainify }}" />
{{ end }}
2018-01-27 22:38:55 +00:00
{{ if .Inner }}
<figure>
2018-05-18 19:19:04 +01:00
{{ template "img" . }}
2018-01-27 22:38:55 +00:00
<figcaption>
<small>{{ .Inner }}</small>
</figcaption>
</figure>
{{ else }}
2018-05-18 19:19:04 +01:00
{{ template "img" . }}
2018-01-27 22:38:55 +00:00
{{ end }}