argos/dmp-frontend/src/app/shared/components/breadcrumb/breadcrumb.component.html

14 lines
471 B
HTML
Raw Normal View History

2018-07-23 16:01:27 +02:00
<ol class="no-style" fxLayout="row" fxLayoutAlign="start center">
<div fxFlex="nogrow" *ngFor="let breadcrumb of buildBreadCrumb(this.activatedRoute) | async ; let i = index; let length = count ">
<div fxLayout="row">
<li fxFlex="nogrow">
<a [routerLink]="[breadcrumb.url]" [queryParams]="breadcrumb.params">
{{ breadcrumb.label }}
</a>
</li>
<mat-icon fxFlex="nogrow">chevron_right</mat-icon>
</div>
</div>
</ol>