1
Fork 0
theorangeone.net-legacy/layouts/_default/_markup/render-image.html

15 lines
506 B
HTML
Raw Normal View History

{{ $destination := .Destination }}
{{ $resource := .Page.Resources.GetMatch $destination }}
{{ if $resource }}
2021-12-26 22:46:12 +00:00
{{ $destination = ($resource.Resize "1500x webp").RelPermalink }}
{{ end }}
<figure class="text-center">
<img src="{{ $destination | safeURL }}" alt="{{ .Text | plainify }}" style='max-width: {{ default "90" .Title }}%;' referrerpolicy="no-referrer" loading="lazy" decoding="async" />
<figcaption class="text-center">
<small>{{ .Text | safeHTML }}</small>
</figcaption>
</figure>