templates/include/footer.html.twig line 1

Open in your IDE?
  1. {# --------------------------------------------------- ------ ---------------------------------------------------#}
  2. {# --------------------------------------------------- FOOTER ---------------------------------------------------#}
  3. {# --------------------------------------------------- ------ ---------------------------------------------------#}
  4. <div id="footer" >
  5.     <div id="footerRed">
  6.         <div style="width: 100%; text-align: center; padding-bottom: 20px;">
  7.             <p><strong>
  8.                     {{ 'footer.title'|trans }}
  9.             </strong></p>
  10.         </div>
  11.         <div id="footerAppDiv" style="width: 100%; justify-content: center; align-items: center;">
  12.             <div class="appFooter">
  13.                 <p style="margin-right: 10px;">{{ 'footer.available'|trans }}</p>
  14.                 <div style="display: flex; text-align: center; align-items: center;">
  15.                 <a href="https://play.google.com/store/apps/details?id=com.agmmultimedia.calculobesite&hl=fr&gl=FR">
  16.                     <img id="logoAndroid" src="{{ asset('build/img/picto_android.PNG') }}" style="margin-right: 15px;">
  17.                 </a>
  18.                 <a href="{{ path('abx_bmi_aide_ios') }}">
  19.                     <img id="logoIOS" src="{{ asset('build/img/picto_iPhone.PNG') }}" >
  20.                 </a>
  21.                 </div>
  22.             </div>
  23.             <div class="appFooter">
  24.                 <p style="margin-right: 10px; margin-bottom: 0;">{{ 'footer.atbg'|trans }}
  25.                 {# (Abx BMI inclus) #}
  26.                 &nbsp;:</p>
  27.                 <a href="https://antibiogarde.org/boutiques">
  28.                     <img id="logoWeb" src="{{ asset('build/img/picto_web.PNG') }}" >
  29.                 </a>
  30.             </div>
  31.         </div>
  32.     </div>
  33.     <div style="min-height: 25px; width: 100%; text-align: center;">
  34.         {% set file = app.request.locale == 'en' ? 'AbxBMI_ML_v2_en.pdf' : 'AbxBMI_ML_v2.pdf' %}
  35.         <p style="margin: 0; margin-bottom: 0;">
  36.             {{ 'footer.rights'|trans }}
  37.             <a target="_blank" href="{{ path('abx_bmi_references', {'reference': file}) }}">
  38.                 {{ 'footer.legalNotice'|trans }}
  39.             </a>
  40.              | 
  41.             <a target="_blank" href="{{ path('comite_editorial') }}">
  42.                 {{ 'footer.comiteEditorial'|trans }}
  43.             </a>
  44.         </p>
  45.     </div>
  46. </div>