mirror of
https://github.com/Crocmagnon/blog.git
synced 2024-11-14 20:13:53 +01:00
10 lines
424 B
HTML
10 lines
424 B
HTML
{{ $src := .Get "src" }}
|
|
{{ $origImage := .Page.Resources.GetMatch $src }}
|
|
{{ if eq $origImage.MediaType.SubType "svg" }}
|
|
<img src="{{ $origImage.RelPermalink }}" alt='.Get "alt"'>
|
|
{{ else }}
|
|
{{ $image := $origImage.Resize "720x" }}
|
|
<a href="{{ $origImage.RelPermalink }}">
|
|
<img src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" alt='.Get "alt"'>
|
|
</a>
|
|
{{ end }}
|