mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
21 lines
477 B
HTML
21 lines
477 B
HTML
<a class="button btn btn-default"
|
|
[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>
|
|
|