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.
39 lines
944 B
HTML
39 lines
944 B
HTML
{{ $align := .Get "align" }}
|
|
{{ $alt := .Get "alt" }}
|
|
{{ $caption := .Get "caption" }}
|
|
{{ $float := .Get "float" }}
|
|
{{ $height := .Get "height" }}
|
|
{{ $justify := .Get "justify" }}
|
|
{{ $link := .Get "link" }}
|
|
{{ $maxheight := .Get "maxheight" }}
|
|
{{ $maxwidth := .Get "maxwidth" }}
|
|
{{ $method := .Get "method" }}
|
|
{{ $number := .Get "number" }}
|
|
{{ $numbered := .Get "numbered" }}
|
|
{{ $options := .Get "options" }}
|
|
{{ $raw := .Get "raw" }}
|
|
{{ $src := .Get 0 | default (.Get "src") }}
|
|
{{ $title := .Get "title" }}
|
|
{{ $width := .Get "width" }}
|
|
|
|
{{ partial "paige/image-figure.html" (dict
|
|
"align" $align
|
|
"alt" $alt
|
|
"caption" $caption
|
|
"float" $float
|
|
"gap" 2
|
|
"height" $height
|
|
"justify" $justify
|
|
"link" $link
|
|
"maxheight" $maxheight
|
|
"maxwidth" $maxwidth
|
|
"method" $method
|
|
"number" $number
|
|
"numbered" $numbered
|
|
"options" $options
|
|
"raw" $raw
|
|
"src" $src
|
|
"title" $title
|
|
"width" $width
|
|
) }}
|