themes/bases/Campussuite2015/widgets/Breadcrumbs/build/tpl.html.twig line 1

Open in your IDE?
  1. <ul class="csw cs-breadcrumbs">
  2.     {% for dept in depts %}
  3.         <li>
  4.             <a href="{{ cms_path_prefix(dept) }}">{% if dept.parent is not empty %}{{ dept.name }}{% else %}Home{% endif %}</a>
  5.         </li>
  6.     {% endfor %}
  7.     {% if module is defined and module is not empty %}
  8.         <li>
  9.             <a href="{{ cms_path_prefix(dept) }}/{{ module.key }}">{{ module.name }}</a>
  10.         </li>
  11.     {% endif %}
  12.     {% if text is not empty %}
  13.         <li class="active">{{ text }}</li>
  14.     {% endif %}
  15. </ul>