custom/plugins/MadBodymedTheme/src/Resources/views/storefront/fragment/vat_info/footer.html.twig line 1

Open in your IDE?
  1. {% if minimal %}
  2.     {% if vatIncluded %}
  3.         {{ "footer.includeVat"|trans({
  4.             '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  5.         })|raw }}
  6.     {% else %}
  7.         {{ "footer.excludeVat"|trans({
  8.             '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  9.         })|raw }}
  10.     {% endif %}
  11. {% else %}
  12.     {% if vatIncluded %}
  13.         <p>
  14.             {{ "footer.includeVat"|trans({
  15.                 '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  16.             })|raw }}
  17.         </p>
  18.     {% else %}
  19.         <p>
  20.             {{ "footer.excludeVat"|trans({
  21.                 '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  22.             })|raw }}
  23.         </p>
  24.     {% endif %}
  25. {% endif %}