<ul class="breadcrumb">
	{% for item in breadcrumb %}
		<li class="breadcrumb__item{% if item.class %} {{ item.class }}{% endif %}">
			{% if item.type == 'link' %}
				<a href="{{ item.href }}" class="breadcrumb__link" title="{{ item.label }}">
			{% endif %}
				{{ item.label }}
			{% if item.type == 'link' %}
				</a>
			{% endif %}
		</li>
	{% endfor %}
</ul>