1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/faces/face/face.component.html
2019-02-23 00:29:35 +01:00

21 lines
479 B
HTML

<a class="button btn btn-secondary"
[routerLink]="['/search', person.name, {type: SearchTypes[SearchTypes.person]}]"
style="display: inline-block;">
<div class="photo-container"
[style.width.px]="200"
[style.height.px]="200">
<div class="photo"
[style.background-image]="getSanitizedThUrl()"></div>
</div>
<!--Info box -->
<div #info class="info">
<div class="person-name">{{person.name}} ({{person.count}})</div>
</div>
</a>