15 lines
372 B
HTML
15 lines
372 B
HTML
{{ $orig := .Page.Resources.GetMatch (printf "*%s*" (.Get 0)) }}
|
|
{{ $options := .Get 1 }}
|
|
{{ $img := $orig.Fill $options }}
|
|
|
|
<figure>
|
|
<a href="{{ $orig.RelPermalink }}">
|
|
<img src="{{ $img.RelPermalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
|
|
<figcaption>
|
|
{{ with .Inner }}
|
|
{{ . }}
|
|
{{ end }}
|
|
</figcaption>
|
|
</a>
|
|
</figure>
|