2016-05-01 16:28:05 +08:00
|
|
|
<gallery-lightbox #lightbox></gallery-lightbox>
|
2016-04-26 21:10:05 +08:00
|
|
|
<app-frame>
|
2016-05-04 03:04:57 +08:00
|
|
|
<div navbar>
|
2016-05-11 03:33:58 +08:00
|
|
|
<gallery-search *ngIf="showSearchBar"></gallery-search>
|
2016-05-04 03:04:57 +08:00
|
|
|
</div>
|
2016-05-10 01:14:33 +08:00
|
|
|
<div body class="container" style="width: 100%; padding:0" *ngIf="_galleryService.content.directory">
|
|
|
|
<div *ngFor="let directory of _galleryService.content.directory.directories">
|
2016-04-26 21:10:05 +08:00
|
|
|
<gallery-directory *ngIf="directory" [directory]="directory"></gallery-directory>
|
2016-04-19 03:27:15 +08:00
|
|
|
</div>
|
2016-05-10 03:43:52 +08:00
|
|
|
<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">
|
2016-05-10 16:27:36 +08:00
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class="active"> Searching for: <strong>{{_galleryService.content.searchResult.searchText}}</strong></li>
|
|
|
|
</ol>
|
2016-05-10 03:43:52 +08:00
|
|
|
<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>
|
2016-05-01 16:28:05 +08:00
|
|
|
</div>
|
2016-04-26 21:10:05 +08:00
|
|
|
</app-frame>
|