templates/blocks/breadcrumb-normal.html.twig line 1

Open in your IDE?
  1. <nav class="breadcrumb dflex aic fwwrap mtb-1em{% if pabsolute is defined %} pabsolute{% if content.header_img is defined and content.header_img is not empty %} white{% endif %}{% endif %}">
  2.     {% for item in sulu_breadcrumb(uuid) %}
  3.     {% set title = "" %}
  4.         {% if item.excerpt.title is defined and item.excerpt.title  is not empty %}
  5.             {% set title = item.excerpt.title %}
  6.         {% else %}
  7.             {% if item.title is defined and item.title is not empty %}
  8.                 {% set title = item.title %}
  9.             {% endif %}
  10.         {% endif %}
  11.         {% if loop.last %}
  12.             <div class="diblock chevron">{{ source('svg/crevron-right.html.twig') }}</div>
  13.             <div class="fw400 fs14 lh20 diblock cblue p8">{{ title }}</div>
  14.         {% elseif loop.first %}
  15.             <div class="diblock home-icon">{{ source('svg/home-icon.html.twig') }}</div>
  16.             <a href="{{ sulu_content_path(item.url) }}" class="fw400 fs14 lh20 cblue p8">{{ title }}</a>
  17.         {% else %}
  18.             <div class="diblock chevron">{{ source('svg/crevron-right.html.twig') }}</div>
  19.             <a href="{{ sulu_content_path(item.url) }}" class="fw400 fs14 lh20 cblue p8">{{ title }}</a>
  20.         {% endif %}
  21.     {% endfor %}
  22. </nav>