11 lines
391 B
HTML
11 lines
391 B
HTML
{{- $img := (.Page.Resources.GetMatch (.Get "name")) -}}
|
|
{{- $resized_img := $img.Fit "1280x1280" -}}
|
|
{{- $altText := $img.Params.alt | default $img.Title -}}
|
|
<figure>
|
|
<a href="{{ $img.RelPermalink }}">
|
|
<img src="{{ $resized_img.RelPermalink }}"{{ with $altText}} alt="{{ . }}"{{ end }}>
|
|
</a>
|
|
{{ if $img.Title }}
|
|
<figcaption>{{ $img.Title }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|