Fix images in 3d post

This commit is contained in:
Gabriel Augendre 2023-05-21 11:51:25 +02:00
parent f026d06899
commit 76ff776d7b
2 changed files with 5 additions and 3 deletions

View file

@ -56,9 +56,9 @@ I was a bit worried about the resistance for the bottom pieces but they seem to
Here's what it looks like once mounted and plugged:
{{< img src="6.jpeg" alt="Large view of my closet with the modem mounted on the wall" >}}
{{< img src="6.jpeg" resizeAdd="r270" alt="Large view of my closet with the modem mounted on the wall" >}}
{{< img src="5.jpeg" alt="Close view of my closet with the modem mounted on the wall" >}}
{{< img src="5.jpeg" resizeAdd="r270" alt="Close view of my closet with the modem mounted on the wall" >}}
I'm quite proud of this since it's one of my first "hardware" projects from start to finish and it looks quite gorgeous in that red plastic 😍

View file

@ -3,7 +3,9 @@
{{ if eq $origImage.MediaType.SubType "svg" }}
<img src="{{ $origImage.RelPermalink }}" alt='.Get "alt"'>
{{ else }}
{{ $image := $origImage.Resize "720x" }}
{{ $resizeAdd := .Get "resizeAdd" | default "" }}
{{ $resize := printf "%s%s" (.Get "resize" | default "720x webp Lanczos ") $resizeAdd }}
{{ $image := $origImage.Resize $resize }}
<a href="{{ $origImage.RelPermalink }}">
<img src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" alt='.Get "alt"'>
</a>