Nicky Feller
Nicky Feller

Reputation: 3929

Github Pages Jekyll posts not updating

I have a Jekyll blog running on github pages. I have updated it once and it worked. I just added a second post, it worked when I serve it locally, but when I push it to github, it doesnt show the second blog post on the github page. Even if the markdown file appear in the _post directory.

here is my repo: https://github.com/nrkfeller/mini_cap_blog

Any idea why that is?

Upvotes: 1

Views: 1295

Answers (1)

Virtua Creative
Virtua Creative

Reputation: 2113

Probably there's something wrong here at your _config.yml file:

baseurl: /mini_cap_blog # the subpath of your site, e.g. /blog/
url: "http://nrkfeller.github.io/mini_cap_blog/#" # the base hostname & protocol for your site

Replace for this:

baseurl: /mini_cap_blog/ 
url: http://nrkfeller.github.io

Let me know if this works, yeah?

Upvotes: 2

Related Questions