6 lines
291 B
HTML
6 lines
291 B
HTML
|
{{ $img := (.Page.Resources.GetMatch (.Get "name")) }}
|
||
|
{{ $classes := .Get "class" }}
|
||
|
{{ $width := .Get "width" }}
|
||
|
{{ $resized_img := $img.Resize (printf "%dx%d" $width $width) }}
|
||
|
<img class="circular {{ $classes }}" src="{{ $img.RelPermalink }}" width="{{ $width }}" height="{{ $width }}">
|