I am running 3.1.2 on Windows
When I try to add 'Paginate' to my project, I get an error in cmd
Fatigue: you seem to have pagination enabled, but you don't have jekyll-paginate
including the gem. Make sure you have gems: [jekyll-paginate]
in the configuration file.
I have jekyll-paginate (1.1.0)
and paginate (4.0.0)
, and it still gives this error.
Here is my _config.yml file:
paginate: 4 paginate_path: '/blog/page:num/'
And my index.html page
{% for post in paginator.posts limit: 4 %}
What should I check to solve this problem?
source share