mirror of
https://github.com/nikdoof/website-hugo.git
synced 2025-12-14 08:02:19 +00:00
5 lines
372 B
HTML
5 lines
372 B
HTML
{{ $img := .Page.Resources.GetMatch (printf "*%s*" (.Get "src")) }}
|
|
{{ $width := .Get "width" }}
|
|
{{ $rimg := $img.Resize (print (default "640x" $width) " jpeg picture") }}
|
|
{{ $title := .Get "title" }}
|
|
<a href="{{ $img.RelPermalink }}"><img src="{{ $rimg.RelPermalink }}" width="{{ $rimg.Width }}" height="{{ $rimg.Height }}"{{ if $title }} alt="{{ $title }}"{{ end }}></a> |