danurbanowicz / eleventy-netlify-boilerplate

A template for building a blog with the Eleventy static site generator and Decap CMS
https://eleventy-netlify-boilerplate.netlify.app/
MIT License
528 stars 183 forks source link

support for images #29

Closed Blockchainbrett closed 4 years ago

Blockchainbrett commented 4 years ago

hey Im trying to just add images to posts and the home page

i added the png to the /img folder and referencing them in the home.md and the firstpost.md with the following format

![](/img/CryptoArtDigestLogo.png)

is there anything else I need to do? they wont show up and im used to this working on another gatsbyJS site I use.

danurbanowicz commented 4 years ago

Hi, it looks like your file path is missing the /static/ parent folder, which is where we output our static assets.

It should be:

![](/static/img/CryptoArtDigestLogo.png)

Hopefully that fixes it for you.

danurbanowicz commented 4 years ago

Closing this now, but please feel free to re-open if your issue is not resolved.