We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
site.baseurl
This is related to #125 which was already fixed, but the issue creeped up again with the 2.0 changes.
Example Jekyll config:
baseurl: "/my-sub-website"
Now when you use this in your _head.html:
_head.html
{% stylesheet "main" %}
You will get:
<link type="text/css" rel="stylesheet" href="/assets/main.css">
Which will produce 404 error, because the asset is served at http://127.0.0.1:4000/my-sub-website/assets/main.css.
http://127.0.0.1:4000/my-sub-website/assets/main.css
The text was updated successfully, but these errors were encountered:
192a4ab
No branches or pull requests
This is related to #125 which was already fixed, but the issue creeped up again with the 2.0 changes.
Example Jekyll config:
Now when you use this in your
_head.html
:You will get:
Which will produce 404 error, because the asset is served at
http://127.0.0.1:4000/my-sub-website/assets/main.css
.The text was updated successfully, but these errors were encountered: