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

20 lines
513 B
HTML
Raw Normal View History

2016-12-27 06:36:38 +08:00
<a class="button btn btn-default" [routerLink]="['/gallery', getDirectoryPath()]"
2016-05-16 00:52:07 +08:00
style="display: inline-block;">
2017-03-18 07:11:53 +08:00
<div class="photo-container">
<div class="photo" *ngIf="photo" [style.background-image]="'url('+photo.getThumbnailPath()+')'"></div>
<span *ngIf="!photo" class="glyphicon glyphicon-folder-open no-image" aria-hidden="true">
</span>
</div>
<!--Info box -->
<div #info class="info">
<div class="photo-name">{{directory.name}}</div>
</div>
2016-04-25 02:56:54 +08:00
</a>