templates/index/fragments/prochain_webinar_ch.html.twig line 1

Open in your IDE?
  1. {% cache "bloc_dernieres_webinar_ch" ttl(10800) %}  {#3 heures #}
  2.   
  3. {% if prochainWebinar|default %}
  4.     {% set  lienDetailWebinar = path('webinar_detail',{'idformation':prochainWebinar.id_formation,'titreslug':prochainWebinar.titre|  slugify,'date':prochainWebinar.date_formation|date("Ymd"),'codePays': codePays }) %}
  5.     <div class="card col-12 col-lg-12 no_shadow">
  6.         <div class="row bkg_rose">
  7.             <div class="col-12 col-lg-8 mt-3 mb-2">
  8.                 <i class="fa-light fa-desktop fa-2x blanc"></i>&nbsp;&nbsp;
  9.                 <a  href="{{ lienDetailWebinar }}" >
  10.                     <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>
  11.                 </a>
  12.                 <br><br>
  13.                 <a  href="{{ lienDetailWebinar }}" title="{{ prochainWebinar.titre }}" class="blanc fs14 pt-3">
  14.                     {{ prochainWebinar.titre }} 
  15.                 </a>
  16.                 <br>
  17.             </div>
  18.             <div class="col-6 col-lg-1 text-center my-3">
  19.                 <a href="{{ path('webinar_index',{'codePays':codePays }) }}" title="{{ prochainWebinar.titre }}" target="_blank">
  20.                     <img  src="https://content.fusacq.com/static/help-fusacq/fr/css/images/logos_formation_intermediaire/{{ prochainWebinar.logo }}"
  21.                           style="border: 1px solid #FFFFFF">
  22.                 </a>
  23.             </div> 
  24.             <div class="col-6 col-lg-3 mt-5 pt-2 text-center">
  25.                 <a href="{{ path('webinar_index',{'codePays':codePays }) }}" class="blanc">
  26.                     {{ translate("tous les webinars",lang,"","M")   }}
  27.                 </a>
  28.             </div>
  29.         </div> 
  30.     </div>
  31. {% endif %}
  32. {% endcache %}