Add circlar selfie to about page

This commit is contained in:
Eryn Wells 2022-10-09 13:26:59 -07:00
parent 4fed774c8b
commit 38b06904a8
4 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{{ $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 }}">