{% set items = _args.items|default([]) %}
<ol class="breadcrumb inline__list bg-transparent text-medium font-14">
{% block items %}
{% set active = false %}
{% for item in items %}
{% if item %}
{% if item.active|default(false) %}
{% set active = true %}
{% endif %}
{% include '@ui2022/crumbs__crumb.html.twig' with item|merge({
active: (item.active|default(false) or (loop.last and not active)),
}) %}
{% endif %}
{% endfor %}
{% endblock %}
</ol>