1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-14 11:23:17 +02:00
pigallery2/frontend/app/gallery/gallery.component.html

8 lines
370 B
HTML
Raw Normal View History

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