mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
ccdd08d57a
This enables `AND` (`intersect`) and `OR` (`union`) filters when combined with `where`. Example: ```go {{ $pages := where .Site.RegularPages "Type" "not in" (slice "page" "about") }} {{ $pages := $pages | union (where .Site.RegularPages "Params.pinned" true) }} {{ $pages := $pages | intersect (where .Site.RegularPages "Params.images" "!=" nil) }} ``` The above fetches regular pages not of `page` or `about` type unless they are pinned. And finally, we exclude all pages with no `images` set in Page params. Fixes #3174 |
||
---|---|---|
.. | ||
apply.go | ||
apply_test.go | ||
collections.go | ||
collections_test.go | ||
index.go | ||
index_test.go | ||
init.go | ||
init_test.go | ||
reflect_helpers.go | ||
sort.go | ||
sort_test.go | ||
where.go | ||
where_test.go |