Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

✨ : add shortcode that resize an image to the right width

+4
+4
layouts/shortcodes/img-resized.html
··· 1 + {{ $original := .Page.Resources.GetMatch (.Get "src") }} 2 + {{ $resized := $original.Resize "820x" }} 3 + 4 + <img src="{{ $resized.RelPermalink }}" width="820px">