mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			839 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			839 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ $original := .Page.Resources.GetMatch (printf "%s*" (.Get 0)) }}
 | 
						|
{{ $command := .Get 1 }}
 | 
						|
{{ $options := .Get 2 }}
 | 
						|
{{ if eq $command "Fit"}}
 | 
						|
{{ .Scratch.Set "image" ($original.Fit $options) }}
 | 
						|
{{ else if eq $command "Resize"}}
 | 
						|
{{ .Scratch.Set "image" ($original.Resize $options) }}
 | 
						|
{{ else if eq $command "Fill"}}
 | 
						|
{{ .Scratch.Set "image" ($original.Fill $options) }}
 | 
						|
{{ else }}
 | 
						|
{{ errorf "Invalid image processing command: Must be one of Fit, Fill or Resize."}}
 | 
						|
{{ end }}
 | 
						|
{{ $image := .Scratch.Get "image" }}
 | 
						|
<figure style="width: {{ add $image.Width 3 }}px; padding: 3px; background-color: #cccc">
 | 
						|
	<img src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}">
 | 
						|
	<figcaption>
 | 
						|
	<small>
 | 
						|
	{{ with .Inner }}
 | 
						|
	{{ . }}
 | 
						|
	{{ else }}
 | 
						|
	.{{ $command }} "{{ $options }}"
 | 
						|
	{{ end }}
 | 
						|
	</small>
 | 
						|
	</figcaption>
 | 
						|
</figure> |