src/AppBundle/Resources/views/Layouts/breadcrumbs.html.twig line 1

Open in your IDE?
  1. {# @var breadcrumbs array #}
  2. <nav aria-label="breadcrumb">
  3.     <ol class="breadcrumb">
  4.         {% block breadcrumb %}
  5.             {% if breadcrumbs is defined %}
  6.                 {% for breadcrumb in breadcrumbs %}
  7.                     <li class="breadcrumb-item">
  8.                         {% if not loop.last %}
  9.                         <a href="{{ breadcrumb.href != null ? breadcrumb.href : '#' }}" title="{{ breadcrumb.name }}">
  10.                             {% endif %}
  11.                             <span>
  12.                             {{ breadcrumb.name }}
  13.                         </span>
  14.                             {% if not loop.last %}
  15.                         </a>
  16.                         {% endif %}
  17.                     </li>
  18.                 {% endfor %}
  19.             {% else %}
  20.                 <li class="breadcrumb-item">
  21.                     <a href="/" title="Home">
  22.                         Home
  23.                     </a>
  24.                 </li>
  25.                 {% do pimcore_nav_renderer('breadcrumbs').setMinDepth(null).setPartial('AppBundle:Layouts:inc/breadcrumb.html.twig') %}
  26.                 {{ pimcore_render_nav(mainNavigation,'breadcrumbs') }}
  27.             {% endif %}
  28.         {% endblock %}
  29.     </ol>
  30. </nav>