I'm having problem with my view, it seems that the image is always pending and it's not been rendered by the browser.
I have this folder structure:
img/
- logo.png
scripts/
- scripts here
styles/
- stylesheets here
views/
- home.html
index.html
in my views/home.html I have this code to render the logo:
<img src="img/logo.png" alt="Note Card" class="img-responsive">
the view has been successfully rendered but the image is missing/not rendered. Based on my console it seems logo.png is always pending.
Any thoughts on how to make this work? I can't find any solutions.