No commit activity in last 3 years
No release in over 3 years
Automatically Generate Pagination for Jekyll Posts Categories
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

>= 2.0, ~> 2.0
~> 0
 Project Readme

Jekyll::Paginate::Simplecategory

Simple Pagination Generator for Jekyll Posts Categories

Installation

Add this line to your application's Gemfile:

gem 'jekyll-paginate-simplecategory'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jekyll-paginate-simplecategory

Usage

Config Example

Example of _config.yml file:

# Plugins
gems:
  - jekyll-paginate
  - jekyll-paginate-simplecategory

# Pagination
paginate: 5
paginate_path: "/blog/page:num"

category_paginate_path: "/blog/:categories/page:num"

Customization

Layout

Simplecategory uses the default layout template set for pagination configured in the paginate_path parameter. To change the default layout add the category_layout parameter in _config.yml file:

# Pagination
category_layout: "category.html"

Create the layout file category.html in _layout directory. If you are placing the layout file in any other directory than put the relative path of the file as below.

# Pagination
category_layout: "/my_layouts/category.html"

Other

You can set a custom title for each pages by adding the category_page_title parameter in _config.yml file:

# Pagination
category_page_title: "My Blog - :categories - Page:num"

Contributing

Feel free to report any bug and/or submit any improvement pull requests.

License

The gem is available as open source under the terms of the MIT License.