Macros


        
    
{% macro picture(class, srcset, src, sizeDesktop, sizeMobile, alt, in_component_library) %}
  {% if in_component_library %}
    <picture>
      <source media="(min-width:768px)" srcset="{{ srcset|path }}">
      <img
        class="{{ class }}"
        src="{{ src|path }}"
        alt="{{ alt }}"
      />
    </picture>
  {% else %}
    <picture>
      <source media="(min-width:768px)" srcset="{{ sizeDesktop }}">
      <img
        class="{{ class }}"
        src="{{ sizeMobile }}"
        alt="{{ alt }}"
      />
    </picture>
  {% endif %}
{% endmacro %}
{
  "in_component_library": true
}

No notes defined.

©