mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
20 lines
1.1 KiB
HTML
20 lines
1.1 KiB
HTML
<gallery-lightbox #lightbox></gallery-lightbox>
|
|
<app-frame>
|
|
<div navbar>
|
|
<gallery-search></gallery-search>
|
|
</div>
|
|
<div body class="container" style="width: 100%; padding:0" *ngIf="_galleryService.content.directory">
|
|
<div *ngFor="let directory of _galleryService.content.directory.directories">
|
|
<gallery-directory *ngIf="directory" [directory]="directory"></gallery-directory>
|
|
</div>
|
|
<gallery-grid [photos]="_galleryService.content.directory.photos" [lightbox]="lightbox"></gallery-grid>
|
|
</div>
|
|
|
|
<div body class="container" style="width: 100%; padding:0" *ngIf="_galleryService.content.searchResult">
|
|
<div> Searching for: {{_galleryService.content.searchResult.searchText}}</div>
|
|
<div *ngFor="let directory of _galleryService.content.searchResult.directories">
|
|
<gallery-directory *ngIf="directory" [directory]="directory"></gallery-directory>
|
|
</div>
|
|
<gallery-grid [photos]="_galleryService.content.searchResult.photos" [lightbox]="lightbox"></gallery-grid>
|
|
</div>
|
|
</app-frame> |