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

Open in your IDE?
  1. {% sw_extends '@parent/storefront/layout/footer/footer.html.twig' %}
  2. {% block layout_footer_inner_container %}
  3.     <footer class="footer-main d-print-none">
  4.         <div class="container-fluid limited">
  5.             {% block layout_footer_navigation %}
  6.                 {% block layout_footer_navigation_columns %}
  7.                     <div class="row d-flex flex-wrap justify-content-center align-items-center">
  8.                         <div class="col-12 col-xl-10 d-lg-flex flex-wrap">
  9.                             {% if context.salesChannel.customFields.custom_footer_block_menu %}
  10.                                 <div class="footer-menu mb-4 mb-lg-0 d-lg-flex align-items-center">
  11.                                     {{ context.salesChannel.customFields.custom_footer_block_menu|raw }}
  12.                                 </div>
  13.                             {% endif %}
  14.                             {% if context.salesChannel.customFields.custom_footer_block_scl_linkedin or context.salesChannel.customFields.custom_footer_block_scl_instagram or context.salesChannel.customFields.custom_footer_block_scl_pinterest or context.salesChannel.customFields.custom_footer_block_scl_facebook %}
  15.                                 <ul class="footer-social-channels d-flex justify-content-center justify-content-lg-end ml-lg-auto">
  16.                                     {% if context.salesChannel.customFields.custom_footer_block_scl_linkedin %}
  17.                                         <li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_linkedin }}" target="_blank" title="LinkedIn" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-linkedin"></i></a></li>
  18.                                     {% endif %}
  19.                                     {% if context.salesChannel.customFields.custom_footer_block_scl_instagram %}
  20.                                         <li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_instagram }}" target="_blank" title="Instagram" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-instagram"></i></a></li>
  21.                                     {% endif %}
  22.                                     {% if context.salesChannel.customFields.custom_footer_block_scl_pinterest %}
  23.                                         <li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_pinterest }}" target="_blank" title="Pinterest" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-pinterest"></i></a></li>
  24.                                     {% endif %}
  25.                                     {% if context.salesChannel.customFields.custom_footer_block_scl_facebook %}
  26.                                         <li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_facebook }}" target="_blank" title="Facebook" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-facebook"></i></a></li>
  27.                                     {% endif %}
  28.                                 </ul>
  29.                             {% endif %}
  30.                         </div>
  31.                     </div>
  32.                 {% endblock %}
  33.             {% endblock %}
  34.         </div>
  35.     </footer>
  36. {% endblock %}