templates/mazdashop/footer.html.twig line 1

Open in your IDE?
  1. <div class="footer-wrapper">
  2.   <section class="footer">
  3.     <div class="container">
  4.       {# <div class="newsletter-signup">
  5.         <span>Schrijf je in voor onze nieuwsbrief</span>
  6.         <a href="#" class="btn">Inschrijven <i class="fa fa-arrow-right"></i></a>
  7.       </div> #}
  8.       <div class="row">
  9.         <div class="col-sm-12 col-md-6 col-lg-3">
  10.           {{Settings.footerBlock1|raw}}
  11.         </div>
  12.         <div class="col-sm-12 col-md-6 col-lg-3">
  13.           {{Settings.footerBlock2|raw}}
  14.         </div>
  15.         <div class="col-sm-12 col-md-6 col-lg-3">
  16.           {{Settings.footerBlock3|raw}}
  17.         </div>
  18.         <div class="col-sm-12 col-md-6 col-lg-3">
  19.           {{Settings.footerBlock4|raw}}
  20.         </div>
  21.       </div>
  22.       <section class="sub-footer mt-5">
  23.   <div class="container">
  24.           <div class="col-sm-12">
  25.             <!-- footer block 5 -->
  26.             {{Settings.footerBlock5|raw}}
  27.             {% if Settings.language.getLocale == 'nl' %}
  28.                           <p style="text-align: center;">© Copyright {{ "now"|date("Y") }} - Mazda Pierre - Alle rechten voorbehouden.</p>
  29.             {% endif %}
  30.             {% if Settings.language.getLocale == 'de' %}
  31.                           <p style="text-align: center;">© Urheberrecht {{ "now"|date("Y") }} - Mazda Pierre - Alle Rechte vorbehalten.<p>
  32.             {% endif %}
  33.           </div>
  34.         </div>
  35. </section>
  36.   </section>
  37. </div>