2017-03-20 00:01:41 +01:00
|
|
|
<a #dirContainer class="button btn btn-default" [routerLink]="['/gallery', getDirectoryPath()]"
|
2016-05-15 18:52:07 +02:00
|
|
|
style="display: inline-block;">
|
2017-03-18 00:11:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-21 11:33:21 +02:00
|
|
|
<div class="photo-container">
|
2017-06-10 22:32:56 +02:00
|
|
|
<div class="photo" *ngIf="thumbnail && thumbnail.Available"
|
2017-06-21 11:33:21 +02:00
|
|
|
[style.background-image]="getSanitizedThUrl()"></div>
|
2017-03-18 00:11:53 +01:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
<span *ngIf="!thumbnail || !thumbnail.Available" class="glyphicon glyphicon-folder-open no-image"
|
2017-03-20 00:01:41 +01:00
|
|
|
aria-hidden="true">
|
2017-03-18 00:11:53 +01:00
|
|
|
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<!--Info box -->
|
|
|
|
<div #info class="info">
|
|
|
|
<div class="photo-name">{{directory.name}}</div>
|
|
|
|
|
|
|
|
</div>
|
2016-04-24 20:56:54 +02:00
|
|
|
</a>
|
2016-04-30 18:01:54 +02:00
|
|
|
|