I want to iterate through two sections “post” and “article”.
Selecting content from only one section works:
{{ range first 3 (where .Pages “Section” “post”).ByLastmod }}
but when I try something like “post” or “article”, it fails.
{{ range first 3 (where .Pages “Section” (“post”||“article”)).ByLastmod }}