No commit activity in last 3 years
No release in over 3 years
Automatically generate pagination for each category
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 0

Runtime

 Project Readme

Jekyll::Paginate::Categories

Default pagination generator for Jekyll Categories.

Installation

Add this line to your application's Gemfile:

gem 'jekyll-paginate-categories'

And then execute:

bundle

Or install it yourself as:

gem install jekyll-paginate-categories

Usage

Config example

Example of /_config.yml file:

# Pagination
paginate: 1
paginate_path: "/p/:num/"

paginate_category_basepath: '/c/:name/'
paginate_category_layout: 'category-test.html'

# Plugins
gems :
  - jekyll-paginate
  - jekyll-paginate-categories

Layout example

Example of /_layouts/categories.html file:

---
layout: default
---

<!-- Category title -->
<h1>Category: {{ page.category }}</h1>

<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
  <article>
    <header>
      <h1><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h1>
    </header>
    <div class="entry-content">
      {{ post.excerpt }}
    </div>
  </article>
{% endfor %}

<!-- Pagination links -->
<div class="pagination">
  {% if paginator.previous_page %}
    <a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
  {% else %}
    <span class="previous">Previous</span>
  {% endif %}
  <span class="page_number">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
  {% if paginator.next_page %}
    <a href="{{ paginator.next_page_path }}" class="next">Next</a>
  {% else %}
    <span class="next">Next</span>
  {% endif %}
</div>

Credits

Inspired by this Nicolas Carlo's gist for Jekyll 1.5.1.

Contributing

Note: I'm not a Ruby developer, so feel free to improve my code by submiting a Github Pull Request.

You are invited to contribute new features, fixes or updates to this plugin, through a Github Pull Request.

Issues

If you have any problems with or questions about this plugin, please contact me through a GitHub issue.

Licence

MIT.