C_Pliska
C_Pliska

Reputation: 23

Problem with inserting simple jekyll images

I'm trying to get my first website with Github pages. I read up on quite a few things about getting images to show up on my site but it appears the link is always broken!

enter image description here

Below is my Jekyll markdown. The first image was how I expected it to work. The second image I downloaded and copied it from a tutorial website but it also isn't showing up.

enter image description here

Below is a snapshot of my files if it matters.

enter image description here

Upvotes: 1

Views: 46

Answers (1)

David Jacquel
David Jacquel

Reputation: 52809

Edit : Now that your assets files are versioned, you have case sensitivity problems.

![shred](/assets/images/Shred.jpg)

must be :

![shred](/assets/images/shred.jpg)

and

![Philadelphia...](/assets/philly-magic-gardens.jpg "Philadelphia's Magic Gardens")

must be :

![Philadelphia...](/assets/philly-magic-garden.jpg "Philadelphia's Magic Gardens")

End Edit

You definitely need to commit your assets folder.

enter image description here

Upvotes: 2

Related Questions