mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
12 lines
511 B
HTML
12 lines
511 B
HTML
<gallery-lightbox #lightbox></gallery-lightbox>
|
|
<app-frame>
|
|
<div navbar>
|
|
<gallery-search></gallery-search>
|
|
</div>
|
|
<div body class="container" style="width: 100%; padding:0">
|
|
<div *ngIf="currentDirectory" *ngFor="let directory of currentDirectory.directories">
|
|
<gallery-directory *ngIf="directory" [directory]="directory"></gallery-directory>
|
|
</div>
|
|
<gallery-grid [directory]="currentDirectory" [lightbox]="lightbox"></gallery-grid>
|
|
</div>
|
|
</app-frame> |