Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Themes & Styling

Moving collection from header to twig - pagination doesn't show

Started by Thomas Walter 7 years ago · 2 replies · 528 views
7 years ago

I am trying to move a collection from the page header to the twig template.

To do so I moved the definition in the header

YAML
content:
    items: '@self.descendants'
    filter:
        type: blogpost
    order:
        by: date
        dir: desc
    limit: 3
    pagination: true

to the twig template as shown in Advanced Collections

TWIG
{% set options = { items: '@self.descendants', 'filter': {'type': 'blogpost'}, 'order': {'by': 'date', 'dir': 'desc'}, 'limit': 3, 'pagination': true } %}
{% set collection = page.collection(options) %}

But for some reason the pagination doesn't show up this way unless I specify it in the header again.

YAML
content:
    pagination: true;

Any hints on what I am doing wrong?

7 years ago

Issue you've researched the Grav Pagination Plugin documentation but suggest it just to make sure.

If you have and things still don't work you could create an issue in that plugin's repository as it then comes to the attention of the developers.

7 years ago

My issue was that I can't differentiate if it's a pagination plugin issue or a grav collection / documentation issue.

According to the example in advanced collections I feel it should work with the options as I set up above.

I now get pagination with the following code:

TWIG
{% set options = { 'items': '@self.descendants', 'filter': {'type': 'blogpost'}, 'order': {'by': 'date', 'dir': 'desc'}} %}
{% set collection = page.collection(options) %}
{% do paginate( collection, 3 ) %}

But this doesn't add the required CSS to render the pagination list. I am going to report this as an issue for now.

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by Pedro M, 2 months ago
4 197 2 months ago
Themes & Styling · by Ian, 2 months ago
3 92 2 months ago
Themes & Styling · by Norbert, 2 years ago
11 454 3 months ago
Themes & Styling · by Lukáš Findeis, 3 months ago
0 47 3 months ago
Themes & Styling · by Sebadamus, 4 months ago
5 127 3 months ago