erynwells.me/layouts/shortcodes/circular_image.html

5 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 }}">