<!-- Semmet Angular: Breadcrumb — https://www.w3.org/WAI/ARIA/apg/patterns/breadcrumb/ -->
<!--
Usage from a parent component template:
Import <%= classify(name) %> and <%= classify(name) %>Item in that parent component.
This directive set never owns markup: bring your own <nav>/<ol>/<li> structure.

<nav <%= camelize(name) %>>
  <ol>
    @for (item of trail; track item.href) {
      <li>
        <a <%= camelize(name) %>Item [href]="item.href" [current]="item.current">{{ item.label }}</a>
      </li>
    }
  </ol>
</nav>
-->
