1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/gallery/gallery.component.html

8 lines
370 B
HTML
Raw Normal View History

2016-03-20 16:54:30 +01:00
<h1>Gallery</h1>
2016-03-20 20:05:51 +01:00
2016-03-26 16:25:48 +01:00
<div *ngIf="currentDirectory" *ngFor="#directory of currentDirectory.directories" >
2016-03-20 20:05:51 +01:00
<gallery-directory *ngIf="directory" [directory]="directory" ></gallery-directory>
</div>
2016-03-26 16:25:48 +01:00
<div *ngIf="currentDirectory" *ngFor="#photo of currentDirectory.photos" >
<gallery-photo *ngIf="photo" [photo]="photo" [directory]="currentDirectory"></gallery-photo>
2016-03-20 16:54:30 +01:00
</div>