erynwells.me/layouts/shortcodes/post_figure.html

12 lines
No EOL
339 B
HTML

<figure>
{{ $img := (.Page.Resources.GetMatch (.Get "name")) }}
{{ $resized_img := $img.Fit "576x576" }}
<a href="{{ $img.RelPermalink }}">
<img src="{{ $resized_img.RelPermalink }}" />
</a>
<figcaption>
{{ if $img.Title }}
<h4>{{ $img.Title }}</h4>
{{ end }}
</figcaption>
</figure>