tpl/collections: Add group template func
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 8 Sep 2018 11:00:36 +0000 (13:00 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 8 Sep 2018 18:20:26 +0000 (20:20 +0200)
commit6667c6d7430acc16b3683fbbacd263f1d00c8672
treea238b6bf5a2e02da09e79eafa4784e7f51441144
parentcfda13b36367465016f4458ab9924c948ed02b6f
tpl/collections: Add group template func

This extends the page grouping in Hugo with a template function that allows for ad-hoc grouping.

A made-up example:

```
{{ $cool := where .Site.RegularPages "Params.cool" true | group "cool" }}
{{ $blue := where .Site.RegularPages "Params.blue" true | group "blue" }}
{{ $paginator := .Paginate (slice $cool $blue) }}
```

Closes #4865
common/collections/collections.go [new file with mode: 0644]
common/types/types.go
hugolib/page.go
hugolib/pageGroup.go
hugolib/pageGroup_test.go
tpl/collections/collections.go
tpl/collections/collections_test.go
tpl/collections/init.go