28 lines
		
	
	
		
			808 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			808 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ $caption := .Get 0 | default (.Get "caption") }}
 | |
| {{ $content := .Inner | replaceRE "^\n" "" | replaceRE "\n$" "" }}
 | |
| {{ $float := .Get "float" }}
 | |
| {{ $height := .Get "height" }}
 | |
| {{ $horizontal := .Get "horizontal" }}
 | |
| {{ $maxheight := .Get "maxheight" }}
 | |
| {{ $maxwidth := .Get "maxwidth" }}
 | |
| {{ $number := .Get "number" }}
 | |
| {{ $numbered := .Get "numbered" }}
 | |
| {{ $vertical := .Get "vertical" }}
 | |
| {{ $width := .Get "width" }}
 | |
| 
 | |
| {{ $content = printf `<blockquote class="blockquote mb-0">%v</blockquote>` $content }}
 | |
| 
 | |
| {{ partial "paige/figure.html" (dict
 | |
|     "caption" $caption
 | |
|     "content" $content
 | |
|     "float" $float
 | |
|     "height" $height
 | |
|     "horizontal" $horizontal
 | |
|     "maxheight" $maxheight
 | |
|     "maxwidth" $maxwidth
 | |
|     "number" $number
 | |
|     "numbered" $numbered
 | |
|     "vertical" $vertical
 | |
|     "width" $width
 | |
| ) }}
 |