templates/front_v4/mca/partials/_footer_minimal.html.twig line 1

Open in your IDE?
  1. <!-- ========== FOOTER ========== -->
  2. <footer class="my-2">
  3.     <div class="align-items-md-center justify-content-center text-sm-start">
  4.         {% block annotationIndicators %}
  5.             <div class="my-2 text-center text-secondary"><small>(1) Test non médical</small></div>
  6.             {% if annotationIndicators is defined %}
  7.                 {% for annotationIndicator in annotationIndicators %}
  8.                     <div class="my-1 text-secondary"><small>{{ annotationIndicator|raw }}</small></div>
  9.                 {% endfor %}
  10.             {% endif %}
  11.         {% endblock annotationIndicators %}
  12.         <hr>
  13.         {% if not isWhiteLabel() %}
  14.             <!-- List -->
  15.             <ul class="list-unstyled d-sm-inline-block text-center text-sm-left list-separator mb-0 d-sm-flex justify-content-sm-center">
  16.                 <li class="d-block d-sm-inline list-inline-item"><a class="link-sm link-secondary" href="{{ path('legal-notice') }}">Mentions légales</a></li>
  17.                 <li class="d-block d-sm-inline list-inline-item"><a class="link-sm link-secondary" href="{{ path('privacy') }}">Politique de confidentialité</a></li>
  18.                 <li class="d-block d-sm-inline list-inline-item"><a class="link-sm link-secondary" href="{{ path('cgu') }}">CGU</a></li>
  19.                 <li class="d-block d-sm-inline list-inline-item"><a class="link-sm link-secondary" href="{{ path('rgpd') }}">RGPD</a></li>
  20.             </ul>
  21.             <!-- End List -->
  22.         {% endif %}
  23.         <div class="d-flex justify-content-center mt-2">
  24.             <div class="mb-1">
  25.                 <!-- Logo -->
  26.                 {% if not isWhiteLabel() %}
  27.                     <!-- MCA Logo -->
  28.                     <img class="max-width-23" src="{{ asset('build/mca_logo_horizontal.png') }}"
  29.                          alt="Mon Centre Auditif" width="200px">
  30.                 {% else %}
  31.                     <!-- Whitelabel Logo -->
  32.                     <img class="max-width-23" src="{{ asset('build/whitelabel/images/logo_depistage_auditif.png') }}"
  33.                          alt="Depistage-auditif.fr" width="200px">
  34.                 {% endif %}
  35.                 <!-- End Logo -->
  36.             </div>
  37.         </div>
  38.         <div class="d-flex justify-content-center mb-0">
  39.             <p class="link-sm link-secondary mb-0"> © {{ "now"|date('Y') }} -
  40.                 {% if not isWhiteLabel() %}
  41.                     Mon Centre Auditif
  42.                 {% else %}
  43.                     Depistage-auditif.fr
  44.                 {% endif %}
  45.             </p>
  46.         </div>
  47.     </div>
  48. </footer>
  49. <!-- ========== END FOOTER ========== -->