7 lines
335 B
HTML
7 lines
335 B
HTML
<center>
|
|
{{ $original := .Page.Resources.GetMatch (.Get "src") }}
|
|
{{ $preview := $original.Resize "700x Lanczos webp" }}
|
|
<a href="{{ $original.RelPermalink }}" target="_new" style="border-bottom: 0px; background-color: inherit;">
|
|
<img src="{{ $preview.RelPermalink }}" alt="{{ .Get "alt" }}" style="border: 0px;" />
|
|
</a>
|
|
</center>
|