<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 %}">
{% for item in sulu_breadcrumb(uuid) %}
{% set title = "" %}
{% if item.excerpt.title is defined and item.excerpt.title is not empty %}
{% set title = item.excerpt.title %}
{% else %}
{% if item.title is defined and item.title is not empty %}
{% set title = item.title %}
{% endif %}
{% endif %}
{% if loop.last %}
<div class="diblock chevron">{{ source('svg/crevron-right.html.twig') }}</div>
<div class="fw400 fs14 lh20 diblock cblue p8">{{ title }}</div>
{% elseif loop.first %}
<div class="diblock home-icon">{{ source('svg/home-icon.html.twig') }}</div>
<a href="{{ sulu_content_path(item.url) }}" class="fw400 fs14 lh20 cblue p8">{{ title }}</a>
{% else %}
<div class="diblock chevron">{{ source('svg/crevron-right.html.twig') }}</div>
<a href="{{ sulu_content_path(item.url) }}" class="fw400 fs14 lh20 cblue p8">{{ title }}</a>
{% endif %}
{% endfor %}
</nav>