Title says it all. The images seem fine in their folder in Git Hub, and they load on the local server as well.
All of the images I have included are linked int he metadata for the _index and post.md files like this:
"featured_image: “.image/jeep.jpg”
I’ve tried adding a slash (./image/jeep.jpg)
I’ve tried adding and removing the “.” (/image/jeep.jpg)
You seem to have forgotten to set the baseUrl in your hugo.yaml file not according to your domain, hence the images get the wrong base url / domain in your theme after publishing.
When you look at the header output in the dom-inspector, you’ll see that there is a line like:
ahh thank you. It works now!
For those with the same issue, I also realized that github is sensitive to caps. Not just in the title, such as “Picture.jpg”, but in the suffix, as in “Picture.JPG”.
Why would that be a GitHub issue? It depends on the file system, and most of them nowadays differentiate between upper and lower case. You’re better assuming that upper and lower case file names are different, always.