mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
8 lines
370 B
HTML
8 lines
370 B
HTML
<h1>Gallery</h1>
|
|
|
|
<div *ngIf="currentDirectory" *ngFor="#directory of currentDirectory.directories" >
|
|
<gallery-directory *ngIf="directory" [directory]="directory" ></gallery-directory>
|
|
</div>
|
|
<div *ngIf="currentDirectory" *ngFor="#photo of currentDirectory.photos" >
|
|
<gallery-photo *ngIf="photo" [photo]="photo" [directory]="currentDirectory"></gallery-photo>
|
|
</div> |