Using our own images in templates

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” >

1 Like

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 :slight_smile: )

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.