Is there a possibility to insert our own images inside templates using <img> tags?
If yes, where should images be stored for the simplest path like <img src=“image.png” > or <img src=“/images/image.png” >
Is there a possibility to insert our own images inside templates using <img> tags?
If yes, where should images be stored for the simplest path like <img src=“image.png” > or <img src=“/images/image.png” >
i even tried to make a custom field with the path, and the recall then path like the business logo:
{% for field in custom_fields %}
{% if field.label != ‘logo’ %} {% continue %} {% endif %}
<div> <img src = “{{ field.text }}” > </div>
{% endfor %}
But it din’t worked… maybe the system is protected from the outside environment (witch is a good thing to know )
It should work. Try to upload image to some image hosting service such as www.imgur.com and see if you can get it working that way.