mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
21 lines
657 B
HTML
21 lines
657 B
HTML
<app-frame>
|
|
|
|
<div body #container class="container-fluid">
|
|
<app-face *ngFor="let person of favourites | async"
|
|
[person]="person"
|
|
[size]="size"></app-face>
|
|
<hr *ngIf="(nonFavourites | async).length > 0"/>
|
|
<app-face *ngFor="let person of nonFavourites | async"
|
|
[person]="person"
|
|
[size]="size"></app-face>
|
|
|
|
<div class="d-flex no-face-msg"
|
|
*ngIf="(nonFavourites | async).length == 0 && (favourites | async).length == 0">
|
|
<div class="flex-fill">
|
|
<h2>:( <ng-container i18n>No faces to show.</ng-container>
|
|
</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</app-frame>
|