Hi, everyone!
I have problems with images when I added them to site posts. I tried everything but they won’t show up on site. None of these work.
![My helpful screenshot](/assets/images/theblack.jpg)
<img src="{{ site.baseurl }}/assets/images/theblack.jpg">
<img src= "{{ "/assets/images/theblack.jpg" | prepend: site.baseurl }}">
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/theblack.jpg" alt="">
<img src="{{ site.url }}/assets/images/theblack.jpg" alt="">
![My helpful screenshot]({{"/assets/images/theblack.jpg" | absolute_url}})
Config looks like these:
defaults:
- scope:
path: "assets/imgages"
values:
image: true
baseurl: “”
url: https://example.com
It’s hosted on private github repo and netlify. Any ideas what I’m doing wrong?
Br, Ron