-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
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
Icon tags not found #10
Comments
I haven't tested with your configuration file. # URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: http://www.demo.com/blog
root: /blog/ |
Hi CodeDaraW, In the end, I am a bit lost and the best I could do is to put the "blog" subfolder in both configuration files. Then the only minor broken thing is that I fixed that by altering Are there better practises maybe? I found a solution by myself so you can close this issue if you don't have the time now, but in the future if other users report a similar problem you will know they are not alone. |
I'm sorry that it's quite busy at the moment, but I will give you a more elegent solution or the cause before closing the issue. Please wait. XD |
bug fixed. (update v1.0) |
Hi,
the computed css rule
background: url("../../images/icon-tags.svg") center center no-repeat;
leads to a 404 error. It should be changed to
background: url("../images/icon-tags.svg") center center no-repeat;
Observed with both hexo server and hexo static generated files. I use a blog subfolder, with the following configuration:
menu:
Home: /blog/
Archives: /blog/archives
...
The text was updated successfully, but these errors were encountered: