{% sw_extends '@Storefront/storefront/layout/footer/footer.html.twig' %}
{% block layout_footer_vat %}
<div class="footer-vat">
{% if context.taxState == "gross" %}
<p>
{{ "footer.includeVat"|trans({
'%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
})|raw }}
</p>
<a href="#" id="open_preferences_center">Cookie-Präferenzzentrum</a>
{% else %}
<p>
{{ "footer.excludeVat"|trans({
'%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
})|raw }}
</p>
<a href="#" id="open_preferences_center">Cookie-Präferenzzentrum</a>
{% endif %}
</div>
{% endblock %}