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

8 lines
240 B
HTML
Raw Normal View History

2016-06-30 01:26:31 +08:00
<ol id="directory-path" class="breadcrumb">
<li *ngFor="let path of routes">
2016-12-27 06:36:38 +08:00
<a *ngIf="path.route" [routerLink]="['/gallery',path.route]">{{path.name}}</a>
2016-06-30 01:26:31 +08:00
<span *ngIf="!path.route">{{path.name}}</span>
</li>
</ol>