mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
23 lines
709 B
HTML
23 lines
709 B
HTML
<a #dirContainer class="button btn btn-default" [routerLink]="['/gallery', getDirectoryPath()]"
|
|
[queryParams]="_shareService.isSharing() ? { sk: _shareService.getSharingKey() }:{}"
|
|
style="display: inline-block;">
|
|
|
|
|
|
<div class="photo-container"
|
|
[style.width.px]="calcSize()"
|
|
[style.height.px]="calcSize()">
|
|
<div class="photo" *ngIf="thumbnail && thumbnail.Available"
|
|
[style.background-image]="getSanitizedThUrl()"></div>
|
|
|
|
<span *ngIf="!thumbnail || !thumbnail.Available" class="oi oi-folder no-image"
|
|
aria-hidden="true">
|
|
</span>
|
|
</div>
|
|
<!--Info box -->
|
|
<div #info class="info">
|
|
<div class="directory-name">{{directory.name}}</div>
|
|
|
|
</div>
|
|
</a>
|
|
|