vendor/kematjaya/breadcrumb-bundle/src/Breadcrumb/Resources/views/breadcrumb.html.twig line 1

Open in your IDE?
  1. <ul class="breadcrumb page-breadcrumb">
  2.     {% for breadcrumb in breadcrumbs %}
  3.         {% if breadcrumb.isLast() %}
  4.         <li style="color:#F00">
  5.             {{ breadcrumb.getIcon()|raw }}
  6.             <span><strong>{{ breadcrumb.getLabel() }}</strong></span>
  7.         </li>
  8.         {% else %}
  9.         <li>
  10.             {{ breadcrumb.getIcon()|raw }}
  11.             <a href="{{ (breadcrumb.getUrl()) ? breadcrumb.getUrl():'javascript:;' }}"><strong>{{ breadcrumb.getLabel() }}</strong></a>
  12.         </li>
  13.         {% endif %}
  14.     {% endfor %}
  15. </ul>