<!DOCTYPE html>
<html>
{# --------------------------------------------------- ------ ---------------------------------------------------#}
{# --------------------------------------------------- HEADER ---------------------------------------------------#}
{# --------------------------------------------------- ------ ---------------------------------------------------#}
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}ABXBMI{% endblock %}</title>
<link rel="icon" href="{{ asset('build/img/icon1024.png') }}"></link>
<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">
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
{# --------------------------------------------------- ---- ---------------------------------------------------#}
{# --------------------------------------------------- BODY ---------------------------------------------------#}
{# --------------------------------------------------- ---- ---------------------------------------------------#}
<body>
<div class="content">
{% set currentLocale = app.request.locale %}
{# --------------------------------------------------- HEADER ---------------------------------------------------#}
{% include 'include/header.html.twig' %}
{# --------------------------------------------------- HEADER ---------------------------------------------------#}
{# --------------------------------------------------- PAGE ---------------------------------------------------#}
<div class="container" style="margin-top: 15px; margin-bottom: 15px; ">
<h3><strong>{{ 'comiteEditorial.titre'|trans }}</strong></h3>
<ul class="row list-unstyled" id="comite-editorial">
<li class="col-6">
<b>Pr Bernard ALLAOUCHICHE</b>
<p>Service de Réanimation</p>
<p>Centre Hospitalier Lyon Sud</p>
<p>165 chemin du Grand Revoyet</p>
<p>69310 Pierre-Bénite</p>
</li>
<li class="col-6">
<b>Dr Jean-Pierre BRU</b>
<p>Service des Maladies Infectieuses</p>
<p>Centre Hospitalier Annecy-Genevois</p>
<p>1 Av. de l'Hôpital, </p>
<p>74370 Epagny Metz-Tessy</p>
</li>
<li class="col-6">
<b>Dr Remy GAUZIT</b>
<p>Service de Réanimation</p>
<p>CHU Cochin</p>
<p>27, rue du Fbg-St-Jacques,</p>
<p>75014 Paris</p>
</li>
<li class="col-6">
<b>Pr Christophe STRADY </b>
<p>Service des Maladies Infectieuses</p>
<p>Hôpital de Melun-Sénart</p>
<p>270 Av. Marc Jacquet, </p>
<p>77000 Melun</p>
</li>
</ul>
</div>
</div>
{# --------------------------------------------------- PAGE ---------------------------------------------------#}
{# --------------------------------------------------- FOOTER ---------------------------------------------------#}
{% include 'include/footer.html.twig' %}
{# --------------------------------------------------- FOOTER ---------------------------------------------------#}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RTG28H3XZF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-RTG28H3XZF');
</script>
{% endblock %}
</body>
</html>