mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
9 lines
320 B
HTML
9 lines
320 B
HTML
<ol id="directory-path" class="breadcrumb">
|
|
<li *ngFor="let path of routes">
|
|
<a *ngIf="path.route" [routerLink]="['/gallery',path.route]"
|
|
[queryParams]="_shareService.isSharing() ? { sk: _shareService.getSharingKey() }:{}">{{path.name}}</a>
|
|
<span *ngIf="!path.route">{{path.name}}</span>
|
|
</li>
|
|
|
|
</ol>
|