<!-- ========== FOOTER ========== -->{% set ArrayBrands = generic_content_front.footerContent['hearing_brands'] %}{% set ArrayCities = generic_content_front.footerContent['cities'] %}{% set ArrayMakers = generic_content_front.footerContent['hearing_makers'] %}{% block css %} {{ encore_entry_link_tags('footer') }}{% endblock css %}<footer class="container content-space-t-lg-1"> {% if not isWhiteLabel() %} <div class="border-bottom space-2"> <div class="row justify-content-md-between"> <div class="col-12 col-md-4 col-lg-3 mb-4 mb-lg-0"> <a class="h3" href="{{ path('hearing_brand_list') }}">Les enseignes</a> <div class="row"> <div class="col-12"> <!-- List Group --> <ul class="list-unstyled list-py-1 mt-3"> {% for brand in ArrayBrands[ ArrayBrands|length - 5 :] | sort %} <li> <a class="link-sm link-secondary" href="{{ path('hearing_brand_show', {'slug': brand.slug}) }}"> {{ brand.name }} {% if brand.isUpdated %} <span class="new-badge badge badge-success badge-pill ml-1">Nouveau</span> {% endif %} </a> </li> {% endfor %} </ul> <!-- End List Group --> <a class="link link-sm py-1" href="{{ path('hearing_brand_list') }}">Voir plus <small> ({{ ArrayBrands | length }}) </small> <i class="bi-chevron-right small ms-1"></i> </a> </div> </div> </div> <div class="col-12 col-md-4 col-lg-3 mb-4 mb-lg-0"> <a class="h3" href="{{ path('index_store_page') }}"> Audioprothésistes <span class="d-block">à proximités</span> </a> <div class="row"> <div class="col-12"> <!-- List Group --> <ul class="list-unstyled list-py-1 mt-3"> {% for city in ArrayCities[ ArrayCities|length - 5 : ] | sort %} <li> <a class="link-sm link-secondary" href="{{ path('city_post_show', { 'slug': city.slug }) }}"> {{ city.name }} {% if city.isUpdated %} <span class="new-badge badge badge-success badge-pill mx-2">Nouveau</span> {% endif %} </a> </li> {% endfor %} </ul> <!-- End List Group --> <a class="link link-sm py-1" href="{{ path('city_post_list') }}">Voir plus <small> ({{ ArrayCities | length }}) </small> <i class="bi-chevron-right small ms-1"></i> </a> </div> </div> </div> <div class="col-12 col-md-4 col-lg-3 mb-4 mb-lg-0"> <a class="h3" href="{{ path('hearing_maker_list') }}">Les fabricants</a> <div class="row"> <div class="col-12"> <!-- List Group --> <ul class="list-unstyled list-py-1 mt-3"> {% for maker in ArrayMakers[ ArrayMakers|length - 5 : ] | sort %} <li> <a class="link-sm link-secondary" href="{{ path('hearing_maker_show', {'slug': maker.slug}) }}"> {{ maker.name }} {% if maker.isUpdated %} <span class="new-badge badge badge-success badge-pill mx-2">Nouveau</span> {% endif %} </a> </li> {% endfor %} </ul> <!-- End List Group --> <a class="link link-sm py-1" href="{{ path('hearing_maker_list') }}">Voir plus <small> ({{ ArrayMakers | length }}) </small> <i class="bi-chevron-right small ms-1"></i> </a> </div> </div> </div> <div class="d-none d-lg-block col-lg-3 text-right mb-4 mb-sm-0"> <div class="mb-4"> <h2>Vous possédez un<br><strong class="text-primary"> centre auditif ?</strong></h2> </div> <a class="btn btn-primary btn-sm transition-3d-hover" href="{{ path('lp_freelancer') }}">Créer un compte</a> </div> {% block annotationIndicators %} <div class="mt-md-3"> <div class="col-12 my-1 text-secondary"><small>(1) Test non médical</small></div> {% if annotationIndicators is defined %} {% for annotationIndicator in annotationIndicators %} <div class="col-12 my-1 text-secondary"><small>{{ annotationIndicator|raw }}</small> </div> {% endfor %} {% endif %} </div> {% endblock annotationIndicators %} </div> </div> {% endif %} <div class="row pt-5"> <div class="col-sm mb-3 mb-sm-0 text-center"> <!-- Socials --> <ul class="list-inline list-separator mb-0"> <li class="list-inline-item"> <a class="text-body" href="{{ path('legal-notice') }}">Mentions légales</a> </li> <li class="list-inline-item"> <a class="text-body" href="{{ path('privacy') }}">Politique de confidentialité</a> </li> <li class="list-inline-item"> <a class="text-body" href="{{ path('cgu') }}">CGU</a> </li> <li class="list-inline-item"> <a class="text-body" href="{{ path('rgpd') }}">RGPD</a> </li> </ul> <!-- End Socials --> </div> <div class="col-sm-auto text-center"> <!-- Logo --> <a class="d-inline-flex align-items-center" href="{% if isWhiteLabel() %}{{ path('whitelabel_homepage') }}{% else %}{{ path('home') }}{% endif %}" aria-label="{% if isWhiteLabel() %} Depistage-auditif.fr {% else %} Mon Centre Auditif {% endif %}"> <img src="{% if isWhiteLabel() %}{{ asset('build/whitelabel/images/logo_depistage_auditif.png') }}{% else %}{{ asset('build/mca_logo_horizontal.png') }}{% endif %}" alt=" {% if isWhiteLabel() %} Depistage-auditif.fr {% else %} Mon Centre Auditif {% endif %}" width="200" height="35"> </a> <!-- End Logo --> </div> <!-- Copyright --> <div class="col-12 w-md-85 text-lg-center mx-lg-auto text-center"> <p class="text-muted small"> {{ "now"|date('Y') }} © {% if isWhiteLabel() %} Depistage-auditif.fr {% else %} Mon Centre Auditif {% endif %} </p> </div> <!-- End Copyright --> </div></footer><!-- ========== END FOOTER ========== -->