Angular Breadcrumbs

The breadcrumb navigation provides links back to each previous page the user navigated through and shows the current location in a website or an application. You don’t have to add separators, because they automatically added in CSS through ::before and content .

@for (item of items; track item; let i = $index, isLast = $last) { {{ item.label }} }
@for (item of items.slice(0, 1); track item; let i = $index, isLast = $last) { {{ item.label }} } @for (item of items.slice(0, 2); track item; let i = $index, isLast = $last) { {{ item.label }} } @for (item of items.slice(0, 3); track item; let i = $index, isLast = $last) { {{ item.label }} } @for (item of items.slice(0, 4); track item; let i = $index, isLast = $last) { {{ item.label }} }
Home Library Data Bootstrap
Angular Breadcrumbs router