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.

Daimko Newcomer

@Daimko · Joined 8 years ago · 3 posts · 1 topics · 0 reputation

Badges

✏️ First Post 💬 Conversation Starter

Recent posts

  • Display pages with the same category · 8 years ago

    @Daimko: <ul class="liste-articles"> {% for p in page.parent.children if p != page %} <li> <a href="{{ p.url }}">{{ p.title }}</a> </li> {% endfor %} </ul> Hello,

  • Display pages with the same category · 8 years ago

    Thank you, I have read this page without finding a solution to my problem... If anyone has an idea, I'm a taker !

  • Display pages with the same category · 8 years ago

    Hello, I want to display the other pages with the same category as the current page. I added this code in blog_item.html.twig which displays all the pages right now : <ul class="liste-articles"&gt