breadcrumb-item
Information
- Folder
src/components/elements/breadcrumb-item
Files
Schema
Mocks
Template
// src/components/elements/breadcrumb-item/breadcrumb-item.twig
{% if url and not is_current %}
<a
href="{{ url }}"
class="BreadcrumbItem {{ classes|join(' ') }}"
{{ attributes }}
>
{{ label }}
</a>
{% else %}
<span
class="BreadcrumbItem--current {{ classes|join(' ') }}"
{% if is_current %}aria-current="page"{% endif %}
{{ attributes }}
>
{{ label }}
</span>
{% endif %}
Error: schema is invalid: data/properties must be object