mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
10 lines
366 B
HTML
10 lines
366 B
HTML
<nav aria-label="breadcrumb">
|
|
<ol id="directory-path" class="breadcrumb">
|
|
<li *ngFor="let path of routes" class="breadcrumb-item">
|
|
<a *ngIf="path.route" [routerLink]="['/gallery',path.route]"
|
|
[queryParams]="queryService.getParams()">{{path.name}}</a>
|
|
<ng-container *ngIf="!path.route">{{path.name}}</ng-container>
|
|
</li>
|
|
</ol>
|
|
</nav>
|