I have images of different sizes in my page resources. In a partial, I want only process those that do not contain the string “px” in their name. This
{{$images := .Page.Resources.ByType "image" }}
{{- range where $images "Name" "<>" "px" }}
still returns all images. The files are not part of the index.md's front matter.
Is there a way to achieve this?