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

23 lines
623 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 text-%v">%v</blockquote>` $align $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
) }}