1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-02 03:37:54 +02:00
pigallery2/frontend/app/gallery/gallery.component.html

12 lines
513 B
HTML
Raw Normal View History

2016-05-01 10:28:05 +02:00
<gallery-lightbox #lightbox></gallery-lightbox>
<app-frame>
<div navbar>
<gallery-search></gallery-search>
</div>
2016-05-04 18:57:31 +02:00
<div body class="container" style="width: 100%; padding:0" *ngIf="currentDirectory">
<div *ngFor="let directory of currentDirectory.directories">
<gallery-directory *ngIf="directory" [directory]="directory"></gallery-directory>
</div>
2016-05-04 18:57:31 +02:00
<gallery-grid [directory]="currentDirectory" [lightbox]="lightbox"></gallery-grid>
2016-05-01 10:28:05 +02:00
</div>
</app-frame>