You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
626 B
HTML
25 lines
626 B
HTML
{{ $caption := .Get 0 | default (.Get "caption") }}
|
|
{{ $content := .Inner }}
|
|
{{ $float := .Get "float" }}
|
|
{{ $height := .Get "height" }}
|
|
{{ $horizontal := .Get "horizontal" }}
|
|
{{ $maxwidth := .Get "maxwidth" }}
|
|
{{ $number := .Get "number" }}
|
|
{{ $numbered := .Get "numbered" }}
|
|
{{ $vertical := .Get "vertical" }}
|
|
{{ $width := .Get "width" }}
|
|
|
|
{{ partial "paige/figure.html" (dict
|
|
"caption" $caption
|
|
"content" $content
|
|
"float" $float
|
|
"gap" 2
|
|
"height" $height
|
|
"horizontal" $horizontal
|
|
"maxwidth" $maxwidth
|
|
"number" $number
|
|
"numbered" $numbered
|
|
"vertical" $vertical
|
|
"width" $width
|
|
) }}
|