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.

40 lines
1.0 KiB
HTML

{{ $alt := .Get "alt" }}
{{ $caption := .Get "caption" }}
{{ $captionclass := .Get "captionclass" }}
{{ $captionstyle := .Get "captionstyle" }}
{{ $class := .Get "class" }}
{{ $contentclass := .Get "contentclass" }}
{{ $contentstyle := .Get "contentstyle" }}
{{ $height := .Get "height" }}
{{ $imageclass := .Get "imageclass" }}
{{ $imagestyle := .Get "imagestyle" }}
{{ $link := .Get "link" }}
{{ $method := .Get "method" }}
{{ $options := .Get "options" }}
{{ $src := .Get 0 | default (.Get "src") }}
{{ $style := .Get "style" }}
{{ $title := .Get "title" }}
{{ $width := .Get "width" }}
{{ partial "paige/image-figure.html" (dict
"caption" $caption
"captionclass" $captionclass
"captionstyle" $captionstyle
"class" $class
"contentclass" $contentclass
"contentstyle" $contentstyle
"style" $style
"alt" $alt
"height" $height
"imageclass" $imageclass
"imagestyle" $imagestyle
"method" $method
"options" $options
"src" $src
"title" $title
"width" $width
"link" $link
) }}