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

Pagination of blog items

first-time help-wanted theme

Started by Sidy James Diatta 5 years ago · 2 replies · 1483 views
5 years ago

Hello guys,
I have a problem to paginate between the previous and following pages of articles. This is due to the changes I made in the content items of the blog. Indeed, I replaced (@ self.children) by @ self.modular: / home in item.fr.md then I added:
{% set options = { items: {'@self.children':''}, 'limit': page.header.bloglimit, 'order': {'by': 'date', 'dir': 'desc'}, 'pagination': true } %}
{% set collectionblog = page.collection(options) %}
in blog-item.html.twig with :

TWIG
{% if not page.isLast %}
        <a class="btn" href="{{ page.prevSibling.url }}"><i class="fa fa-angle-left"></i> {{ 'Precedent'|t }}</a>
{% endif %}

{% if not page.isFirst %}
    <a class="btn" href="{{ page.nextSibling.url }}">{{ 'Suivant'|t }} <i class="fa fa-angle-right"></i></a>
{% endif %}

the next and previous buttons block on the same page.
I really need your help please. 😇
images :
paginate1|690x131

THEME: Big Picture

last edited 05/28/21 by Sidy James Diatta
5 years ago

@Sidy, I'm afraid there are a few things I do not understand:

  • What problem are you addressing?
  • What should the end result be/look like?
  • The question, especially the code snippets, isn't formatted that clearly. I fail to make sense of it.

Please, help the community help you by making a question as clear as possible...

last edited 05/29/21 by pamtbaau
5 years ago

gravimage|690x153

Hello, yes sorry I could only put one image.
This is a one page blog post. I would like to go from one article to another with the previous and next buttons but it gets stuck on the same page

Suggested topics

Topic Participants Replies Views Activity
General · by Hanns Mattes, 3 weeks ago
1 266 3 weeks ago
General · by Andy Miller, 3 weeks ago
0 195 3 weeks ago
General · by Jerry Hunt, 3 weeks ago
2 331 3 weeks ago
General · by pamtbaau, 3 weeks ago
1 253 3 weeks ago
General · by Andy Miller, 3 weeks ago
0 221 3 weeks ago