blinkfox / hexo-theme-matery

A beautiful hexo blog theme with material design and responsive design.一个基于材料设计和响应式设计而成的全面、美观的Hexo主题。国内访问:http://blinkfox.com
https://blinkfox.github.io/
Apache License 2.0
5.24k stars 1.25k forks source link

Can't display post image with local asset #87

Closed Tilix4 closed 5 years ago

Tilix4 commented 5 years ago

Hi, thank you for your wonderful work !

I want to set the image of my post with a local asset img: /sources/medias/featureimages/MyImage.jpg but it doesn't work. What am I missing ?

My code looks like:

title: MyPost date: 2016-06-13 15:44:43 img: /sources/medias/featureimages/MyImage.jpg

blinkfox commented 5 years ago

@Tilix4 You should remove the /sources prefix,and write like this:

img: /medias/featureimages/MyImage.jpg

Tilix4 commented 5 years ago

@blinkfox Thank you very much, it works for that. What if I want to get an image from my hexo root folder (not from matery theme)? Like: /source/images/myimage.jpg

blinkfox commented 5 years ago

Same as before. Like: /images/myimage.jpg.

Tilix4 commented 5 years ago

Wonderful. Thank you.