templates/front/theme1/partials/footer/elements/_horaire.html.twig line 1

Open in your IDE?
  1. {% if horairesFooter %}
  2.     <div class="info-footer info-horaire-footer">
  3.         {% if contactItem.actifHoraireComplete %}
  4.             <i class="fa fa-clock-o mr-2 {{class_icon}}"></i>
  5.             {% if contactsInfos[loop.index - 1].nomContact is not empty and titreHorairesFooter %} {{contactsInfos[loop.index - 1].nomContact}} : {% endif %}
  6.             {{contactItem.horairesContact|raw}}
  7.         {% else %}
  8.             <i class="fa fa-clock-o mr-2 {{class_icon}}"></i>
  9.             {% if contactsInfos[loop.index - 1].nomContact is not empty and titreHorairesFooter %} {{contactsInfos[loop.index - 1].nomContact}} : {% endif %}
  10.             {% if 'now'|date("w") == 1 %}
  11.                 Lundi : {{contactItem.horaireLun}}
  12.             {% elseif 'now'|date("w") == 2 %}
  13.                 Mardi : {{contactItem.horaireMard}}
  14.             {% elseif 'now'|date("w") == 3 %}
  15.                 Mercredi : {{contactItem.horaireMerc}}
  16.             {% elseif 'now'|date("w") == 4 %}
  17.                 Jeudi : {{contactItem.horaireJeu}}
  18.             {% elseif 'now'|date("w") == 5 %}
  19.                 Vendredi : {{contactItem.horaireVend}}
  20.             {% elseif 'now'|date("w") == 6 %}
  21.                 Samedi : {{contactItem.horaireSam}}
  22.             {% elseif 'now'|date("w") == 0 %}
  23.                 Dimanche : {{contactItem.horaireDim}}
  24.             {% endif %}
  25.         {% endif %}
  26.     </div>  
  27. {% endif %}