custom/plugins/EcocodeTrustpilot/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. {#
  3. Generic trustbox to show in the footer
  4. #}
  5. {% block layout_footer_navigation_columns %}
  6.     {% set ecocodeTrustpilotConfig = getEcocodeTrustpilotPluginConfig(context) %}
  7.     {% if ecocodeTrustpilotConfig.useBascicFooterWidget %}
  8.         <div class="col-md-4 footer-column">
  9.             <div class="footer-column-headline footer-headline justify-content-center">
  10.                 {% include '@EcocodeTrustpilot/storefront/component/widget/micro-review-count.html.twig' %}
  11.             </div>
  12.         </div>
  13.     {% endif %}
  14.     {{ parent() }}
  15. {% endblock %}