{% cache "bloc_dernieres_webinar_ch" ttl(10800) %} {#3 heures #}
{% if prochainWebinar|default %}
{% set lienDetailWebinar = path('webinar_detail',{'idformation':prochainWebinar.id_formation,'titreslug':prochainWebinar.titre| slugify,'date':prochainWebinar.date_formation|date("Ymd"),'codePays': codePays }) %}
<div class="card col-12 col-lg-12 no_shadow">
<div class="row bkg_rose">
<div class="col-12 col-lg-8 mt-3 mb-2">
<i class="fa-light fa-desktop fa-2x blanc"></i>
<a href="{{ lienDetailWebinar }}" >
<span class="soustitre_medium fs13 blanc">{{ translate("prochain webinar" ,lang,"","M","") | raw }} {{ translate("le" ,lang,"","","") | raw }} {{ prochainWebinar.date_formation|date('d/m/Y') }} à {{ prochainWebinar.horaire|slice(0, 5) }}</span>
</a>
<br><br>
<a href="{{ lienDetailWebinar }}" title="{{ prochainWebinar.titre }}" class="blanc fs14 pt-3">
{{ prochainWebinar.titre }}
</a>
<br>
</div>
<div class="col-6 col-lg-1 text-center my-3">
<a href="{{ path('webinar_index',{'codePays':codePays }) }}" title="{{ prochainWebinar.titre }}" target="_blank">
<img src="https://content.fusacq.com/static/help-fusacq/fr/css/images/logos_formation_intermediaire/{{ prochainWebinar.logo }}"
style="border: 1px solid #FFFFFF">
</a>
</div>
<div class="col-6 col-lg-3 mt-5 pt-2 text-center">
<a href="{{ path('webinar_index',{'codePays':codePays }) }}" class="blanc">
{{ translate("tous les webinars",lang,"","M") }}
</a>
</div>
</div>
</div>
{% endif %}
{% endcache %}