Skip to main content

img_url

{% set image = '/path/to/my-image.jpg' %}
{{ image | img_url }}
/path/to/my-image.jpg
{% set image = '/path/to/my-image.jpg' %}
<img src="{{ image | img_url }}" alt="Product image" />
<img src="/path/to/my-image.jpg" alt="Product image" />