When I use this excellent theme, I found the author image on the foot did not shown, and I checked the css styles and found "background: no-repeat url("img/author.jpg") left top;", then I went through the code and found this line background no-repeat url(root+author-img) left top in file source/css/_partial/footer.styl, it seems the value of root is ""(empty), so I added a root: / configuration item in _config.yml and it worked as the styles changed to "background: no-repeat url("/img/author.jpg") left top;". Is it a bug or I missed some configuration?
When I use this excellent theme, I found the author image on the foot did not shown, and I checked the css styles and found
"background: no-repeat url("img/author.jpg") left top;", then I went through the code and found this linebackground no-repeat url(root+author-img) left topin filesource/css/_partial/footer.styl, it seems the value of root is ""(empty), so I added aroot: /configuration item in_config.ymland it worked as the styles changed to"background: no-repeat url("/img/author.jpg") left top;". Is it a bug or I missed some configuration?