Closed ghost closed 8 years ago
Did you create any post?
............
Check the file name. Each post must have a name containing the date, for example: 2016-05-11-postname.md
..............
Try to execute this command: jekyll build
in the terminal.
You entered the Front Matter on top of the posts?
..............
try this:
---
title: Testing 123
---
some text
..........
.............
Are you hosting it on Github Pages or locally?
...........
Your code is a public repo?
................
Ok, I think the problem is the jekyll-paginate plugin. The latest Jekyll version doesn't support natively the pagination. You must add the plugin. Install the plugin:
$ gem install jekyll-paginate
Then in your _config.yml file add:
# Plugins
gems:
- jekyll-paginate
..............
..........