{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
{% block layout_head_stylesheet %}
{{ parent() }}
{% block layout_head_stylesheet_lazyload %}
{% apply spaceless %}
{% if config('IesLazyLoading6.config.lazyloadIcon') is not same as 'disabled' %}
{% set lazyLoadingIcon = config('IesLazyLoading6.config.lazyloadIcon')|default('audio') %}
{% set lazyloadColor = config('IesLazyLoading6.config.lazyloadColor')|default('#000') %}
{% set iconContent %}
{% sw_include '@IesLazyLoading6/storefront/icons/' ~ lazyLoadingIcon ~ '.svg' with {
color: lazyloadColor
} %}
{% endset %}
<style>[data-ies-lazy-loading]{background-image: url('data:image/svg+xml;charset=UTF-8,{{ iconContent|replace({'#': '%23',"\n":' ',"\r":' '})|raw }}');}</style>
<script type="text/javascript">function onIesLazyLoaded(img) {img.removeAttribute('data-ies-lazy-loading');}</script>
{% endif %}
{% endapply %}
{% endblock %}
{% endblock %}