14 lines
394 B
HTML
14 lines
394 B
HTML
{{ $img := (.Page.Resources.GetMatch (.Get "name")) }}
|
|
{{ $resized_img := $img.Fit "1000x1000" }}
|
|
<div class="centered">
|
|
<figure>
|
|
<a href="{{ $img.RelPermalink }}">
|
|
<img src="{{ $resized_img.RelPermalink }}" />
|
|
</a>
|
|
{{ if $img.Title }}
|
|
<figcaption>
|
|
<p>{{ $img.Title }}</p>
|
|
</figcaption>
|
|
{{ end }}
|
|
</figure>
|
|
</div>
|