Daimko Newcomer New
@Daimko · Joined 9 years ago · 3 posts · 1 topics · 0 reputation
Badges
✏️ First Post
💬 Conversation Starter
Recent posts
-
Display pages with the same category
· 9 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
· 9 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
· 9 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">