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

13 lines
446 B
HTML

{{ $destination := .Destination }}
{{ if not (hasPrefix .Destination "http") }}
{{ $resource := .Page.Resources.GetMatch $destination }}
{{ $destination = ($resource.Resize "1000x").RelPermalink }}
{{ end }}
<figure class="text-center">
<img src="{{ $destination | safeURL }}" alt="{{ .Text | plainify }}" style="max-width: 90%;"/>
<figcaption class="text-center">
<small>{{ .Text | markdownify }}</small>
</figcaption>
</figure>