Files
davideisinger.com/themes/v2/layouts/shortcodes/thumbnail.html
2023-04-03 20:57:39 -04:00

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>