diff options
Diffstat (limited to 'themes/terminal/layouts/shortcodes/figure.html')
-rw-r--r-- | themes/terminal/layouts/shortcodes/figure.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/themes/terminal/layouts/shortcodes/figure.html b/themes/terminal/layouts/shortcodes/figure.html new file mode 100644 index 0000000..6642c82 --- /dev/null +++ b/themes/terminal/layouts/shortcodes/figure.html @@ -0,0 +1,8 @@ +{{ if .Get "src" }} + <figure class="{{ with .Get "position"}}{{ . }}{{ else -}} left {{- end }}" > + <img src="{{ .Get "src" | safeURL }}" {{ with .Get "alt" }} alt="{{ . | plainify }}" {{ end }} {{ with .Get "style" }} style="{{ . | safeCSS }}" {{ end }} /> + {{ if .Get "caption" }} + <figcaption class="{{ with .Get "captionPosition"}}{{ . }}{{ else -}} center {{- end }}" {{ with .Get "captionStyle" }} style="{{ . | safeCSS }}" {{ end }}>{{ .Get "caption" | safeHTML }}</figcaption> + {{ end }} + </figure> +{{ end }} |