I’ve set up my site that the url format is like /categorie/posttitle (post.md looks like taxonomy: category: cat1).
For an index page I’d like to loop through the latest posts in ALL categories.
While I’m able to loop throught recent posts for a specific category
<ul>
{% for post in page.find('/cat1').children.order('date', 'desc').slice(0, 10) %}
<li>{{ post.title }}</li>
{% endfor %}
</ul>
(which works perfectly and returns the most recent posts for category 1) I’m stuck on doing it sidewide for most recent posts in all categories (/cat1, /cat2, /cat3).
I’ve tried page.find('/') or pages.children but no success.