fluid-dev / hexo-theme-fluid

:ocean: 一款 Material Design 风格的 Hexo 主题 / An elegant Material-Design theme for Hexo
https://hexo.fluid-dev.com/
GNU General Public License v3.0
7.07k stars 1.12k forks source link

Material-T/layout/index.ejs 报错 #25

Closed Alfxjx closed 5 years ago

Alfxjx commented 5 years ago

Line 9 image image

0x2E commented 5 years ago

你好 @Alfxjx ,我没能复现出报错,尝试一下 hexo cleanheox g

Alfxjx commented 5 years ago

1,您好,我从vscode换到了webstorm这个error就消失了。

2,之前主要就是index页面的文章缩略图不显示,后来我把front-matter里面的index_img的地址从../source/_posts改到了一个新建的../source/post_img,就可以显示了。想问一下缩略图的地址是必须要在source/post_img下面吗

0x2E commented 5 years ago

涉及到的 Hexo 解析逻辑是这样的:

  1. /source/_posts 中读取文章内容渲染成HTML;
  2. /themes/Material-T/source/ 下的文件全部拷贝到网站根目录;

所以建议所有图片引用使用相对于根目录的 url ,比如我把图片放到 /themes/Material-T/source/here_is_my_img/ ,引用的时候链接应为 /here_is_my_img/***.jpg

Alfxjx commented 5 years ago

明白了,谢谢指导!