This component implements the breadcrumb pattern.
<il-breadcrumb>
<ol>
<li><a href="/">Home</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/components/navigation">Navigation</a></li>
<li><a href="/components/navigation/breadcrumb" aria-current="page">Breadcrumb</a></li>
</ol>
</il-breadcrumb>
- Links must be placed in an ordered list.
- The first link should point to the home page.
- The final link should point to the current page.
- A link to the current page must contain the
aria-current="page"
attribute.
- The component wraps the list of links in a
nav
element witharia-label="Breadcrumb"
.