custom/apps/ZmbGoogleCustomerReviews/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. {% set theme = config('ZmbGoogleCustomerReviews.config.theme') %}
  3. {% set position = config('ZmbGoogleCustomerReviews.config.position') %}
  4. {% block layout_footer_navigation_columns %}
  5.     {{parent()}}
  6.     {% if position == "new-column" %}
  7.         <div class="col-md-4 footer-column js-footer-column">
  8.             <div class="footer-column-headline footer-headline">
  9.                 &nbsp;
  10.             </div>
  11.             <div class="footer-column-content">
  12.                 <div class="footer-column-content-inner">
  13.                     {% sw_include '@ZmbGoogleCustomerReviews/storefront/pro-customer-reviews/components/badge.html.twig' %}
  14.                 </div>
  15.             </div>
  16.         </div>
  17.     {% endif %}
  18. {% endblock %}
  19. {% block layout_footer_navigation_information_links %}
  20.     {{parent()}}
  21.     {% if position == "footer-nav" and loop.last %}
  22.         {% sw_include '@ZmbGoogleCustomerReviews/storefront/pro-customer-reviews/components/badge.html.twig' %}
  23.     {% endif %}
  24. {% endblock %}
  25. {% block layout_footer_shipping_logos %}
  26.     {{parent()}}
  27.     {% if position == "shipping-payment" %}
  28.         {% sw_include '@ZmbGoogleCustomerReviews/storefront/pro-customer-reviews/components/badge.html.twig' with { class: "footer-logo" } %}
  29.     {% endif %}
  30. {% endblock %}
  31. {% block layout_footer_copyright %}
  32.     {% if position == "copyright-before" %}
  33.         <div class="footer-copyright" style="margin-bottom: 16px">
  34.             {% sw_include '@ZmbGoogleCustomerReviews/storefront/pro-customer-reviews/components/badge.html.twig' %}
  35.         </div>
  36.     {% endif %}
  37.     {{parent()}}
  38.     {% if position == "copyright-after" %}
  39.         <div class="footer-copyright" style="margin-top: 16px">
  40.             {% sw_include '@ZmbGoogleCustomerReviews/storefront/pro-customer-reviews/components/badge.html.twig' %}
  41.         </div>
  42.     {% endif %}
  43. {% endblock %}