Hello, i'm trying to build an indexpage for my receptar blog.
All of them are in the same blog but their page name start with;
soup-
maincours-
What i'm trying to do is building an index using this snippet:
{% for p in page.find('/blog/soup*').children if p != page %} <li><a href="{{p.url}}">{{ p.title }}</a></li> {% endfor %}
This ain't working. Is there another way to get the result i'm expecting?