When I use {% load static %}
and then add an image like this to my template:
<img src="{% static 'logo.png' %}">
I only get the image if it's stored in a direction called static
which is in the same app. But I want to use the logo for the whole project, and, also in a template for the whole project. It doesn't work when the image is stored in a static
direction which is in the inner project folder.
How do I use static files for the whole project? And how to acces them from the template? (I'm a hobby developper and so not in production ;-)) My settings are nearly the one they were when I created the project. (I only added some additional template direction.)
Thank you for reading this