templates/comite-editorial.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     {# --------------------------------------------------- ------ ---------------------------------------------------#}
  4.     {# --------------------------------------------------- HEADER ---------------------------------------------------#}
  5.     {# --------------------------------------------------- ------ ---------------------------------------------------#}
  6.     <head>
  7.         <meta charset="UTF-8">
  8.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9.         <title>{% block title %}ABXBMI{% endblock %}</title>
  10.         <link rel="icon" href="{{ asset('build/img/icon1024.png') }}"></link>
  11.         <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
  12.         {% block stylesheets %}
  13.             {{ encore_entry_link_tags('app') }}
  14.         {% endblock %}
  15.     </head>
  16.     {# --------------------------------------------------- ---- ---------------------------------------------------#}
  17.     {# --------------------------------------------------- BODY ---------------------------------------------------#}
  18.     {# --------------------------------------------------- ---- ---------------------------------------------------#}
  19.     <body>
  20.         <div class="content">
  21.             {% set currentLocale = app.request.locale %}
  22.             {# --------------------------------------------------- HEADER ---------------------------------------------------#}
  23.             {% include 'include/header.html.twig' %}
  24.             {# --------------------------------------------------- HEADER ---------------------------------------------------#}
  25.             {# --------------------------------------------------- PAGE ---------------------------------------------------#}
  26.             <div class="container" style="margin-top: 15px; margin-bottom: 15px; ">
  27.                 <h3><strong>{{ 'comiteEditorial.titre'|trans }}</strong></h3>
  28.                 <ul class="row list-unstyled" id="comite-editorial">
  29.                     <li class="col-6">
  30.                         <b>Pr Bernard ALLAOUCHICHE</b>
  31.                         <p>Service de Réanimation</p>
  32.                         <p>Centre Hospitalier Lyon Sud</p>
  33.                         <p>165 chemin du Grand Revoyet</p>
  34.                         <p>69310 Pierre-Bénite</p>
  35.                     </li>
  36.                     <li class="col-6">
  37.                         <b>Dr Jean-Pierre BRU</b>
  38.                         <p>Service des Maladies Infectieuses</p>
  39.                         <p>Centre Hospitalier Annecy-Genevois</p>
  40.                         <p>1 Av. de l'Hôpital, </p>
  41.                         <p>74370 Epagny Metz-Tessy</p>
  42.                     </li>
  43.                     <li class="col-6">
  44.                         <b>Dr Remy GAUZIT</b>
  45.                         <p>Service de Réanimation</p>
  46.                         <p>CHU Cochin</p>
  47.                         <p>27, rue du Fbg-St-Jacques,</p>
  48.                         <p>75014 Paris</p>
  49.                     </li>
  50.                     <li class="col-6">
  51.                         <b>Pr Christophe STRADY </b>
  52.                         <p>Service des Maladies Infectieuses</p>
  53.                         <p>Hôpital de Melun-Sénart</p>
  54.                         <p>270 Av. Marc Jacquet, </p>
  55.                         <p>77000 Melun</p>
  56.                     </li>
  57.                 </ul>
  58.                
  59.             </div>
  60.         </div>
  61.         {# --------------------------------------------------- PAGE ---------------------------------------------------#}
  62.         
  63.         {# --------------------------------------------------- FOOTER ---------------------------------------------------#}
  64.         {% include 'include/footer.html.twig' %}
  65.         {# --------------------------------------------------- FOOTER ---------------------------------------------------#}
  66.         {% block javascripts %}
  67.             {{ encore_entry_script_tags('app') }}
  68.             <!-- Google tag (gtag.js) -->
  69.             <script async src="https://www.googletagmanager.com/gtag/js?id=G-RTG28H3XZF"></script>
  70.             <script>
  71.                 window.dataLayer = window.dataLayer || [];
  72.                 function gtag(){
  73.                     dataLayer.push(arguments);
  74.                 }
  75.                 gtag('js', new Date());
  76.                 gtag('config', 'G-RTG28H3XZF');
  77.             </script>
  78.         {% endblock %}
  79.     
  80.     </body>
  81. </html>