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