-
What happened?
Expected behaviorAll posts are visible on the localhost:4000, but not on https://.../github.io.
Or is there some other problem? Steps to reproduce the behaviorI proceeded with the minimal-mistakes download zip not fork. OtherI already have index.html in root
and already set paginate, paginate_path and jekyll-paginate plugins in _config.yml
please help me... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Jekyll is telling you what the issue is with:
It's finding a conflict between two files that are both trying to write to the same location The fix is to remove |
Beta Was this translation helpful? Give feedback.
Jekyll is telling you what the issue is with:
It's finding a conflict between two files that are both trying to write to the same location
index.html
.If you look at
_pages/home.md
you'll see that it's setting apermalink
that is the same as theindex.html
file in the root of your site.The fix is to remove
_pages/home.md
so Jekyll stops trying to override your paginated homeindex.html
file. My guess is you forked the repo a…