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">
{% for p in page.parent.children if p != page %}
<li>
<a href="{{ p.url }}">{{ p.title }}</a>
</li>
{% endfor %}
</ul>
Thank you in advance for your help !