So I’m looking at the documentation surrounding pagination on blogs and I’m still left with questions.
- It’s mentioned to put this in the config file for pagination configuration:
paginate_path: "/blog/page:num/"
— but what do you do when you have more than one blog?
and the other item is this:
- It also mentions: " include the
jekyll-paginate
plugin in your Gemfile", which mine now reads this:
group :jekyll_plugins do
gem "jekyll-feed", "jekyll-paginate", "~> 0.6"
end
I did both of these items and the pagination isn’t working at all and no sense if I’m in the right direction or not.