Collections
GAX SSG
Make and Create Collections
Define collection in root file content/posts.md:
---
collection: posts
layout: collection
pagination: 10
---
Then create folder content/posts/*.md
Access:
{% for p in collections.posts %}
{% for p in pagination.items %}
Pagination gives pagination.prev_url, pagination.next_url, pagination.current_page.