I have assigned a variable:
{% assign logologo = ‘yyy.png’ %}
I can call it using <img src:
But i cant seem to be able to load it using the image_url tag:
{{ logologo | image_url: width: 600 | image_tag:
class: ‘header__heading-logo motion-reduce’,
widths: widths,
height: logo_height,
width: settings.logo_width,
alt: logo_alt,
sizes: sizes,
preload: true
}}
How do i need to modify the variable string to get this working or how else can i load the image_tag data for such image?