{% macro html(src, src_srcset, avif, webp, alt, lazy, size_range, caption='') %} {% if src_srcset %} {{ alt }} {% elif (srcset == null) and (webp and avif) %} {{ alt }} {% else %} {{ alt }} {% endif %} {% if caption %}
{{ caption }}
{% endif %} {% endmacro %} {% macro inline(item) %}
{{ html(item.src, item.src_srcset, item.avif, item.webp, item.alt, item.lazy, item.size_range, item.caption) }}
{% endmacro %} {% macro inset(item) %}
{{ html(item.src, item.src_srcset, item.avif, item.webp, item.alt, item.lazy, item.size_range, item.caption) }}
{% endmacro %} {% macro diptych(item) %}
{{ html(src = item.src1, src_srcset = item.src_srcset1, avif = item.avif1, webp = item.webp1, size_range = item.size_range1, alt = item.alt1, lazy = item.lazy) }}
{{ html(src = item.src2, src_srcset = item.src_srcset2, avif = item.avif2, webp = item.webp2, size_range = item.size_range2, alt = item.alt2, lazy = item.lazy) }}
{{ item.caption_mobile }} {{ item.caption_desktop }}
{% endmacro %}