templates/frontend/partials/_footer.html.twig line 1

Open in your IDE?
  1. <footer class="space-top-2 space-bottom-1 bg-primary">
  2.     <div class="container">
  3.         <div class="row space-bottom-2">
  4.             <div class="col-lg-4 space-bottom-1 text-white">
  5.                 <h3 class="fw-medium" style="font-family: 'News Cycle'">A Fluidra Brand</h3>
  6.                 <p class="fs-sm">©2023 Fluidra. All rights reserved. All trademarks and trade names used herein are the
  7.                     property of their respective owners - {% trans %}P.IVA{% endtrans %} 02074460177</p>
  8.             </div>
  9.             <div class="col-lg-10 space-bottom-2 space-bottom-lg-0">
  10.                 <div class="row">
  11.                     <div class="col-lg-3">
  12.                         {% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_1')) %}
  13.                             {% include 'frontend/partials/_footer_entry.html.twig' %}
  14.                         {% endfor %}
  15.                     </div>
  16.                     <div class="col-lg-3">
  17.                         {% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_2')) %}
  18.                             {% include 'frontend/partials/_footer_entry.html.twig' %}
  19.                         {% endfor %}
  20.                     </div>
  21.                     <div class="col-lg-3">
  22.                         {% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_3')) %}
  23.                             {% include 'frontend/partials/_footer_entry.html.twig' %}
  24.                         {% endfor %}
  25.                     </div>
  26.                     <div class="col-lg-3">
  27.                         {% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_4')) %}
  28.                             {% include 'frontend/partials/_footer_entry.html.twig' %}
  29.                         {% endfor %}
  30.                     </div>
  31.                 </div>
  32.             </div>
  33.             <div class="col-lg-2 fs-sm fw-medium d-flex flex-column space-bottom-1 space-lg-0">
  34.                 {% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_5')) %}
  35.                     {% include 'frontend/partials/_footer_entry.html.twig' %}
  36.                 {% endfor %}
  37.             </div>
  38.         </div>
  39.         <div class="d-flex justify-content-center flex-column flex-sm-row border-top border-2 space-top-1 text-white">
  40.             <div class="d-flex fs-sm fw-medium justify-content-center flex-wrap flex-sm-nowrap">
  41.                 {% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_FOOTER')) %}
  42.                     {% include 'frontend/partials/_footer_entry.html.twig' with {class: 'text-nowrap'} %}
  43.                 {% endfor %}
  44.                 <a class="mx-2 mb-3 link text-white fs-sm text-uppercase text-nowrap" href="#cookie-modal"
  45.                    data-bs-toggle="modal">{% trans %}Modifica preferenze privacy{% endtrans %}</a>
  46.             </div>
  47.         </div>
  48.     </div>
  49. </footer>