1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/gallery.component.html

56 lines
2.4 KiB
HTML
Raw Normal View History

<gallery-lightbox #lightbox (onLastElement)="onLightboxLastElement()"></gallery-lightbox>
<app-frame>
2017-07-08 04:54:18 +08:00
<ng-container navbar>
2017-07-09 18:03:17 +08:00
<li *ngIf="countDown">
<p class="navbar-text">Link availability: {{countDown.day}} days,
{{("0"+countDown.hour).slice(-2)}}:{{("0"+countDown.minute).slice(-2)}}:{{("0"+countDown.second).slice(-2)}}
</p>
</li>
2017-07-08 04:54:18 +08:00
<li *ngIf="showSearchBar">
<gallery-search #search></gallery-search>
</li>
<li *ngIf="showShare">
<gallery-share></gallery-share>
</li>
-
</ng-container>
2017-06-21 19:47:21 +08:00
<div body class="container" style="width: 100%; padding:0" *ngIf="_galleryService.content.value.directory">
<gallery-navbar [directory]="_galleryService.content.value.directory"></gallery-navbar>
2017-01-24 04:29:07 +08:00
2017-07-08 06:18:24 +08:00
<div class="directories">
<gallery-directory *ngFor="let directory of directories"
[directory]="directory"></gallery-directory>
</div>
2017-07-14 05:39:09 +08:00
<gallery-map *ngIf="isPhotoWithLocation && mapEnabled"
[photos]="_galleryService.content.value.directory.photos"></gallery-map>
2017-06-21 19:47:21 +08:00
<gallery-grid [photos]="_galleryService.content.value.directory.photos" [lightbox]="lightbox"></gallery-grid>
2017-06-21 17:46:23 +08:00
</div>
2016-05-10 03:43:52 +08:00
2017-06-21 19:47:21 +08:00
<div body class="container" style="width: 100%; padding:0" *ngIf="_galleryService.content.value.searchResult">
2017-06-21 17:46:23 +08:00
<ol class="breadcrumb">
<li class="active">
Searching for:
2017-06-21 19:47:21 +08:00
<span [ngSwitch]="_galleryService.content.value.searchResult.searchType">
2016-12-27 06:36:38 +08:00
<span *ngSwitchCase="0" class="glyphicon glyphicon-picture"></span>
<span *ngSwitchCase="1" class="glyphicon glyphicon-folder-open"></span>
<span *ngSwitchCase="2" class="glyphicon glyphicon-tag"></span>
<span *ngSwitchCase="3" class="glyphicon glyphicon-map-marker"></span>
2016-05-16 17:03:11 +08:00
</span>
2017-07-08 06:18:24 +08:00
<strong>{{_galleryService.content.value.searchResult.searchText}}</strong>
2017-06-21 17:46:23 +08:00
</li>
</ol>
2017-07-14 05:39:09 +08:00
<gallery-map *ngIf="isPhotoWithLocation && mapEnabled"
[photos]="_galleryService.content.value.searchResult.photos"></gallery-map>
2017-07-08 06:18:24 +08:00
<div class="directories">
<gallery-directory *ngFor="let directory of directories"
[directory]="directory"></gallery-directory>
2016-05-01 16:28:05 +08:00
</div>
2017-06-21 19:47:21 +08:00
<gallery-grid [photos]="_galleryService.content.value.searchResult.photos" [lightbox]="lightbox"></gallery-grid>
2017-06-21 17:46:23 +08:00
</div>
2017-06-21 17:33:21 +08:00
</app-frame>