templates/inc/marker_wrapper.html.twig line 1

Open in your IDE?
  1. <div class="marker-wrapper">
  2.     <div class="marker">
  3.         <div class="step1{% if step is defined and step >= 1 %} hilighted{% endif %}"><span>Etape 1</span></div>
  4.         <div class="step2{% if step is defined and step >= 2 %} hilighted{% endif %}"><span>Etape 2</span></div>
  5.         <div class="step3{% if step is defined and step >= 3 %} hilighted{% endif %}"><span>Etape 3</span></div>
  6.         <div class="step4{% if step is defined and step == 4 %} hilighted{% endif %}"><span>Etape 4</span></div>
  7.         {% if step is defined and step == 1.5 %}<div class="submarker" style="width:15%;"></div>{% endif %}
  8.         {% if step is defined and step == 2 %}<div class="submarker" style="width:33%;"></div>{% endif %}
  9.         {% if step is defined and step == 3 %}<div class="submarker" style="width:66%;"></div>{% endif %}
  10.         {% if step is defined and step == 4 %}<div class="submarker" style="width:100%;"></div>{% endif %}
  11.     </div>
  12. </div>