mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
8 lines
252 B
HTML
8 lines
252 B
HTML
<ol id="directory-path" class="breadcrumb">
|
|
<li *ngFor="let path of routes">
|
|
<a *ngIf="path.route" [routerLink]="['Gallery',{directory: path.route}]">{{path.name}}</a>
|
|
<span *ngIf="!path.route">{{path.name}}</span>
|
|
</li>
|
|
|
|
</ol>
|