templates/Nordinfo/Main/parts/breadcrumb.html.twig line 1

Open in your IDE?
  1. {% if is_preview != 1 %}
  2.   {% if breadcrumb|length > 0 %}
  3.     <div class="breadcrumbBar {% if variation|default and variation == 'le-nord' %}--leNord{% endif %}">
  4.       <div class="container">
  5.         <div class="breadcrumbContainer {% if theme is defined %}{{ theme }}{% endif %}" id="breadcrumbContainer">
  6.           <div class="__inner">
  7.             <nav role="navigation" aria-label="Fil d'Ariane">
  8.               <ul class="listBreadcrumbs">
  9.                 {% for b in breadcrumb %}
  10.                   {% if loop.last == true %}
  11.                     <li aria-current="page">
  12.                       <span>{{ b.titre }}</span>
  13.                     </li>
  14.                   {% else %}
  15.                     <li>
  16.                       <a
  17.                         href="{% if is_pdf == 1 %}{{ app.request.getSchemeAndHttpHost() }}{% endif %}{{ b.alias }}"><span>{{ b.titre }}</span></a>
  18.                       <span class="_separator">
  19.                       <svg aria-hidden="true" focusable="false" id="Capa_1" data-name="Capa 1" xmlns="http://www.w3.org/2000/svg"
  20.                            viewBox="0 0 306 188.7">
  21.                         <g>
  22.                             <polygon points="0 153 35.7 188.7 153 71.4 270.3 188.7 306 153 153 0 0 153"/>
  23.                         </g>
  24.                       </svg>
  25.                     </span>
  26.                     </li>
  27.                   {% endif %}
  28.                 {% endfor %}
  29.               </ul>
  30.             </nav>
  31.           </div>
  32.         </div>
  33.       </div>
  34.     </div>
  35.   {% endif %}
  36. {% endif %}