{% set lazy = lazy|default(false) %}{% set placeholder = placeholder|default(false) %}{% set mode = mode|default('basic') %}{% set class = class|default('') %}{% set alt = alt|default('') %}{% set width = width|default('') %}{% set height = height|default('') %}{% if width == false %}{% set imagesize = imagesize(src) %}{% set width = imagesize[0] %}{% set height = imagesize[1] %}{% endif %}<div class="image{% if lazy %} image--lazy{% endif %}{% if placeholder %} image--placeholder{% endif %}{% if mode %} image--{{mode}}{% endif %} {{class}}">{% if lazy %}<img class="image__img js-lazy" src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 {{width}} {{height}}'%3E%3C/svg%3E" data-src="{{src}}" alt="{{alt}}" width="{{width}}" height="{{height}}" data-size="{{width}}x{{height}}" draggable="false">{% else %}<img class="image__img" src="{{src}}" alt="{{alt}}" width="{{width}}" height="{{height}}" data-size="{{width}}x{{height}}" draggable="false">{% endif %}</div>