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

17 lines
621 B
HTML
Raw Normal View History

2018-06-27 17:37:26 +02:00
<mat-card>
<mat-card-content aria-label="breadcrumb">
<ol class="no-style" fxLayout="row">
<div fxFlex="nogrow" *ngFor="let breadcrumb of buildBreadCrumb(this.activatedRoute) | async ; let i = index; let length = count ">
2018-07-11 15:47:36 +02:00
<div fxLayout="row">
<li fxFlex="nogrow">
<a [routerLink]="[breadcrumb.url]" [queryParams]="breadcrumb.params">
2018-06-27 17:37:26 +02:00
{{ breadcrumb.label }}
</a>
</li>
2018-07-11 15:47:36 +02:00
<mat-icon fxFlex="nogrow" *ngIf="length > 1 && i != ( length - 1 )">chevron_right</mat-icon>
2018-06-27 17:37:26 +02:00
</div>
</div>
</ol>
</mat-card-content>
</mat-card>