I am developing a static site using Jekyll, to be deployed on github pages. I am facing issues using the baseurl in the configuration file. Here is an extract of my _config.yml:
baseurl: "/blog"
url: "http://remidoolaeghe.github.io"
When ran locally at http://localhost:4000/blog/, everything is fine. The html pages are found, the resources (images, css, js) are loaded and applied on the pages.
Once deployed on Github Pages, I would expect to have the site available at: http://remidoolaeghe.github.io/blog
But the actual URL is http://remidoolaeghe.github.io.
It seems the baseurl is not used by the Jekyll on Github Pages. The HTML pages are not at the expected URLs, neither any resources is (css, images, etc). Nothing based on baseurl is loaded by the browser, as you can see here:

I have checked the used Jekyll version. I use the same as Github Pages(2.4.0).
Have I missed something?
My Githubrepo can be found here.