-
Notifications
You must be signed in to change notification settings - Fork 4k
Description
Hey,
I'm having an issue and I'm not sure what is causing it, but I thought I'd start here.
I am using Hyde + Github Pages to serve a personal site at: isweet.github.io.
When I open up the Chrome console, and visit the About
page, I see the following error:
GET https://isweet.github.io/about/public/css/poole.css net::ERR_ABORTED
The reason this GET
is failing is because the CSS isn't actually located there. It is located at:
https://isweet.github.io/public/css/poole.css
Now, if I look at _includes/head.html
, I can see that the stylesheet is being imported as:
<link rel="stylesheet" href="{{ site.baseurl }}public/css/poole.css">
and that baseurl
is set to:
baseurl: /
inside of _config.yml
.
So, it seems like for some reason site.baseurl
isn't being interpreted as /
but rather as /about
when loading that page. I'm not sure why. Perhaps it has something to do with pretty permalinks?
It is possible this is my fault, as I'm relatively new to Jekyll + Hyde. Any help would be much appreciated.