octopress / paginate

A simple paginator for Jekyll sites.
MIT License
105 stars 37 forks source link

Paginate through all documents #38

Closed ChrisChinchilla closed 7 years ago

ChrisChinchilla commented 7 years ago

Hi @parkr and thanks for the great plugin.

Is there a way to paginate through all collections, posts etc? For a sort of home page that aggregates all updates across a site.

parkr commented 7 years ago

Hey @ChrisChinchilla, you would have to iterate over the collections themselves:

{% for document in site.collections %}
  <a href="{{ document.url }}">{{ document.title }}</a>
{% endfor %}

This is not possible for pagination, however.