custom/plugins/Goesting/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2.     {% block base_navigation %}
  3.     {% endblock %}
  4.     {% block base_breadcrumb %}
  5.     {% endblock %}
  6.     {% block base_footer %}
  7.         {% if page.cmsPage %}
  8.             {% set customFields = page.header.navigation.active.translated.customFields %}
  9.         {% endif %}
  10.         {% if customFields.custom_category_footer_usp == 'white' or customFields.custom_category_footer_usp == 'purple' or page.product %}
  11.             {% sw_include '@Storefront/storefront/layout/footer/footer-usp.html.twig' with {
  12.                 uspStyle: customFields.custom_category_footer_usp
  13.             } %}
  14.         {% endif %}
  15.         {{parent()}}
  16.     {% endblock %}