1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/navigator/navigator.gallery.component.html

10 lines
366 B
HTML
Raw Normal View History

2018-05-14 04:59:57 +08:00
<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>
2018-05-14 04:59:57 +08:00
<ng-container *ngIf="!path.route">{{path.name}}</ng-container>
</li>
</ol>
</nav>