{{ content }}
{% for post in collections.posts %}
{{post.data.title}}
{% endfor %}
Categories
{% for category in collections.categories %}
{% for post in category.posts %}
{{ post.data.title }}
{% endfor %}
{% endfor %}
Testing second implementation
{% for post in collections.articles %}
{{post.data.title}}
{% endfor %}
Categories
{% for category in collections.articleCategories %}
{% for post in category.posts %}
{{ post.data.title }}
{% endfor %}
{% endfor %}