Files
paige-hugo/layouts/shortcodes/paige/figure.html
2023-01-21 23:43:53 -08:00

11 lines
215 B
HTML

{{ $caption := .Get 0 | default (.Get "caption") }}
{{ $float := .Get "float" }}
{{ $content := .Inner }}
{{ partial "paige/figure.html" (dict
"caption" $caption
"content" $content
"float" $float
) }}