custom/plugins/NieMehrStreichenTheme/src/Resources/views/storefront/layout/footer/footer.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/footer/footer.html.twig' %}
  2. {% block layout_footer_vat %}
  3.     <div class="footer-vat">
  4.         {% if context.taxState == "gross" %}
  5.             <p>
  6.                 {{ "footer.includeVat"|trans({
  7.                     '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  8.                 })|raw }}
  9.             </p>
  10.             <a href="#" id="open_preferences_center">Cookie-Präferenzzentrum</a>
  11.         {% else %}
  12.             <p>
  13.                 {{ "footer.excludeVat"|trans({
  14.                     '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  15.                 })|raw }}
  16.             </p>
  17.             <a href="#" id="open_preferences_center">Cookie-Präferenzzentrum</a>
  18.         {% endif %}
  19.     </div>
  20. {% endblock %}