templates/Global/navigation.html.twig line 1

Open in your IDE?
  1. <section class="section-pagetop bg-gray">
  2.     <div class="{{ services.getSetting("app_layout") }} clearfix">
  3.         <h4 class="title-page dark b float-xl-left mb-0">{{ navigation|last['current'] }}</h4>
  4.         <nav class="float-xl-right mt-2 mt-xl-0">
  5.             <ol class="breadcrumb text-white">
  6.                 <li class="breadcrumb-item"><a href="{{ path('homepage') }}" class="dark"><i class="fas fa-home"></i></a></li>
  7.                         {% for li in navigation %}
  8.                             {% for routename, pagetitle in li if routename != "current" %}
  9.                                 {% if '/' in routename %}
  10.                                     {% set href = routename %}
  11.                                 {% else %}
  12.                                     {% set href = path(routename) %}
  13.                                 {% endif %}
  14.                         <li class="breadcrumb-item"><a href="{{ href }}" class="dark">{{pagetitle}}</a></li>
  15.                         {% endfor %}
  16.                     {% endfor %}
  17.                 <li class="breadcrumb-item active" aria-current="page">{{ navigation|last['current'] }}</li>
  18.             </ol>
  19.         </nav>
  20.     </div>
  21. </section>