I have the following structure:
/blog
/area1
/blog_entry1
blog.md
/blog_entry2
blog.md
/blog_entry3
blog.md
/area2
/blog_entry4
blog.md
/area3
/blog_entry5
blog.md
/blog_entry6
blog.md
I have seen this recipe in twig:
Get last 5 post entries
But as far as I have tried, it does not work recursively.
Is there any option to recursively get the last 5 post entries of all .md files child of /blog ?
(which in this case would be blog_entry1 to blog_entry6)