2020-07-23 19:16:50 +01:00
|
|
|
{{ $destination := .Destination }}
|
|
|
|
|
2020-12-01 19:29:51 +00:00
|
|
|
{{ $resource := .Page.Resources.GetMatch $destination }}
|
|
|
|
|
|
|
|
{{ if $resource }}
|
2021-12-26 22:46:12 +00:00
|
|
|
{{ $destination = ($resource.Resize "1500x webp").RelPermalink }}
|
2020-07-23 19:16:50 +01:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<figure class="text-center">
|
2021-12-12 18:58:05 +00:00
|
|
|
<img src="{{ $destination | safeURL }}" alt="{{ .Text | plainify }}" style='max-width: {{ default "90" .Title }}%;' referrerpolicy="no-referrer" loading="lazy" decoding="async" />
|
2020-07-23 19:16:50 +01:00
|
|
|
<figcaption class="text-center">
|
2022-04-15 11:12:21 +01:00
|
|
|
<small>{{ .Text | safeHTML }}</small>
|
2020-07-23 19:16:50 +01:00
|
|
|
</figcaption>
|
|
|
|
</figure>
|