20 lines
477 B
HTML
20 lines
477 B
HTML
{{ $orig := .Page.Resources.GetMatch (printf "*%s*" (.Get 0)) }}
|
|
{{ $options := .Get 1 }}
|
|
|
|
{{ $img := $orig.Resize $options }}
|
|
|
|
{{ if findRE `\d+x\d+` $options }}
|
|
{{ $img = $orig.Fill (printf "%s center" $options) }}
|
|
{{ end }}
|
|
|
|
<a href="{{ $orig.RelPermalink }}">
|
|
<figure>
|
|
<img src="{{ $img.RelPermalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
|
|
{{ with .Inner }}
|
|
<figcaption>
|
|
{{ . }}
|
|
</figcaption>
|
|
{{ end }}
|
|
</figure>
|
|
</a>
|