templates/layouts/layout/footer.html.twig line 1

Open in your IDE?
  1. {% set site_title = pimcore_website_config('site_title') %}
  2. {% set site_logo_footer = pimcore_website_config('site_logo') %}
  3. {% set address = pimcore_website_config('address') %}
  4. {% set zipCity = pimcore_website_config('zipCity') %}
  5. {% set email = pimcore_website_config('email') %}
  6. {% set phone = pimcore_website_config('phone') %}
  7. {% set imprint = document.property('imprintPage') %}
  8. <section class="section-footer bg-secondary py-5">
  9.     <footer class="container">
  10.         <div class="row">
  11.             <div class="col-6 col-md-3">
  12.                 <div class="footer-item">
  13.                     {#
  14.                     <strong>{{ 'footer_block1_header'|trans }}</strong> #}
  15.                     <img width="175" src="{{ site_logo_footer }}" alt="{{ site_title }}" class="img-fluid mb-3 d-block">
  16.                     {{ address }}<br>
  17.                     {{ zipCity }}<br>
  18.                     T <a href="tel:{{ phone }}">{{ phone }}</a><br>
  19.                     <a href="mailto:{{ email }}">{{ email }}</a><br>
  20.                 </div>
  21.             </div>
  22.             <div class="col-6 col-md-4 pe-5">
  23.                 <div class="footer-item">
  24.                     <div>
  25.                         <strong class="d-block mb-3">{{ 'Holvoet'|trans }}</strong>
  26.                         <p class="mb-3">
  27.                             {{ "Europa's grootste koi en vijvercentrum, 25.000m2 vijverplezier, grootste assortiment koi en
  28.                         vijvervissen. Tuincentrum, dierenspeciaalzaak."|trans }}
  29.                         </p>
  30.                         <ul class="list-group-horizontal list-unstyled">
  31.                             <li><a href="{{ 'footer_link_facebook'|trans }}" target="_blank"><i class="fab fa-facebook fa-lg"></i></a></li>
  32.                             {#
  33.                             <li><a href="{{ 'footer_link_linkedin'|trans }}"><i class="fab fa-linkedin"></i></a></li>#}
  34.                         </ul>
  35.                     </div>
  36.                     <div>
  37.                         <strong class="d-block mb-3">{{ 'Leverings Info'|trans }} <i class="fa-solid fa-truck-fast fa-lg"></i></strong>
  38.                         <p class="mb-3">
  39.                             {{ 'leverings content'|trans|raw }}
  40.                         </p>
  41.                     </div>
  42.                 </div>
  43.             </div>
  44.             <div class="col-6 col-md-2">
  45.                 <div class="footer-item">
  46.                     <strong class="d-block mb-3">{{ 'Assortiment'|trans }}</strong>
  47.                     <ul class="list-unstyled">
  48.                         {% set getAanbod = app_product_getAanbod() %}
  49.                         {% if getAanbod is defined %}
  50.                             {% for aanbod in getAanbod %}
  51.                                 {% set aanbodLink = app_product_grouplink(aanbod) %}
  52.                                 <li>
  53.                                     <a href="{{ aanbodLink }}">
  54.                                         {% if aanbod.combinedCategoryName is not empty %}
  55.                                             {{ aanbod.combinedCategoryName|capitalize }}
  56.                                         {% else %}
  57.                                             {{ aanbod.oms|capitalize }}
  58.                                         {% endif %}
  59.                                     </a>
  60.                                 </li>
  61.                             {% endfor %}
  62.                         {% endif %}
  63.                     </ul>
  64.                 </div>
  65.             </div>
  66.             <div class="col-6 col-md-3">
  67.                 <div class="footer-item">
  68.                     <strong class="d-block mb-3">{{ 'Openingsuren'|trans }}</strong>
  69.                     {{ 'Openingsuren_content'|trans|raw }}
  70.                 </div>
  71.             </div>
  72.         </div>
  73.         <div class="row mt-3">
  74.             <div class="col-12">
  75.                 <div class="footer-item small border-top-secondary pt-3 text-center text-lg-start">
  76.                     &copy; {{ "now"|date("Y") }} - {{ site_title }}
  77.                     <a href="{% if check_websitesetting('algemenevoorwaarden_document', 'document') %}{{ inotherlang('LocalizedDocument', pimcore_website_config('algemenevoorwaarden_document')) }}{% endif %}"
  78.                        target="_self">
  79.                         {{ 'Algemene voorwaarden'|trans }}
  80.                     </a>
  81.                     -
  82.                     <a href="{% if check_websitesetting('privacy_document', 'document') %}{{ inotherlang('LocalizedDocument', pimcore_website_config('privacy_document')) }}{% endif %}"
  83.                        target="_self">
  84.                         {{ 'Privacyverklaring'|trans }}
  85.                     </a>
  86.                     -
  87.                     <a href="{% if check_websitesetting('cookieverklaring_document', 'document') %}{{ inotherlang('LocalizedDocument', pimcore_website_config('cookieverklaring_document')) }}{% endif %}"
  88.                        target="_self">
  89.                         {{ 'Cookieverklaring'|trans }}
  90.                     </a>
  91.                     <span class="float-lg-end">
  92.                     website by <a href="https://www.purplepanda.be" rel="nofollow" class="fw-bold">purple panda</a></span>
  93.                 </div>
  94.             </div>
  95.         </div>
  96.     </footer>
  97. </section>