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.
23 lines
608 B
HTML
23 lines
608 B
HTML
{{ $align := .Get "align" }}
|
|
{{ $caption := .Get "caption" | markdownify }}
|
|
{{ $content := .Inner | markdownify }}
|
|
{{ $float := .Get "float" }}
|
|
{{ $height := .Get "height" }}
|
|
{{ $maxheight := .Get "maxheight" }}
|
|
{{ $maxwidth := .Get "maxwidth" }}
|
|
{{ $width := .Get "width" }}
|
|
|
|
{{ $content = printf `<blockquote class="blockquote mb-0">%v</blockquote>` $content | safeHTML }}
|
|
|
|
{{ partial "paige/figure.html" (dict
|
|
"align" $align
|
|
"caption" $caption
|
|
"content" $content
|
|
"float" $float
|
|
"gap" "0"
|
|
"height" $height
|
|
"maxheight" $maxheight
|
|
"maxwidth" $maxwidth
|
|
"width" $width
|
|
) }}
|