2019-02-15 07:25:55 +08:00
|
|
|
<app-frame>
|
|
|
|
|
2019-03-03 19:11:36 +08:00
|
|
|
<div body #container class="container-fluid">
|
2019-03-04 04:17:42 +08:00
|
|
|
<app-face *ngFor="let person of favourites | async"
|
|
|
|
[person]="person"
|
|
|
|
[size]="size"></app-face>
|
2019-07-21 22:39:52 +08:00
|
|
|
<hr *ngIf="(nonFavourites | async).length > 0"/>
|
2019-03-04 04:17:42 +08:00
|
|
|
<app-face *ngFor="let person of nonFavourites | async"
|
|
|
|
[person]="person"
|
|
|
|
[size]="size"></app-face>
|
2019-07-21 22:39:52 +08:00
|
|
|
|
|
|
|
<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>
|
2019-02-15 07:25:55 +08:00
|
|
|
</div>
|
|
|
|
</app-frame>
|