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