{{ $isJPG := eq (path.Ext .Destination) ".jpg" }} {{ $isPNG := eq (path.Ext .Destination) ".png" }} {{ if ($isJPG) -}} {{ $avifPath:= replace .Destination ".jpg" ".avif" }} {{ $avifPathStatic:= printf "static/%s" $avifPath }} {{ if (fileExists $avifPathStatic) -}} {{- end }} {{ $webpPath:= replace .Destination ".jpg" ".webp" }} {{ $webpPathStatic:= printf "static/%s" $webpPath }} {{ if (fileExists $webpPathStatic) -}} {{- end }} {{- end }} {{ if ($isPNG) -}} {{ $avifPath:= replace .Destination ".png" ".avif" }} {{ $avifPathStatic:= printf "static/%s" $avifPath }} {{ if (fileExists $avifPathStatic) -}} {{- end }} {{ $webpPath:= replace .Destination ".png" ".webp" }} {{ $webpPathStatic:= printf "static/%s" $webpPath }} {{ if (fileExists $webpPathStatic) -}} {{- end }} {{- end }} {{ $img := imageConfig (add "/static" (.Destination | safeURL)) }} {{ .Text }}