{% sw_extends '@Storefront/storefront/layout/header/actions/cart-widget.html.twig' %}
{# ---------------- START: SET TEMPLATE VARS ---------------- #}
{# ThemeWare: Set theme variables #}
{% set twtHeaderCartBtnCompatibility = theme_config('twt-header-cart-btn-compatibility') %}
{# ---------------- END: SET TEMPLATE VARS ---------------- #}
{# ThemeWare: Changes on the cart-button #}
{% block layout_header_actions_cart_widget %}
{% if twtHeaderCartBtnCompatibility == 2 %}
{# ThemeWare: Add label 'header-cart-name' #}
{% if page.cart.lineItems|length > 0 %}
{% endif %}
{% else %}
{# Default block #}
{{ parent() }}
{% endif %}
{% endblock %}