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 }}
|
2020-08-13 20:05:07 +01:00
|
|
|
{{ $destination = ($resource.Resize "1500x").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">
|
|
|
|
<small>{{ .Text | markdownify }}</small>
|
|
|
|
</figcaption>
|
|
|
|
</figure>
|