<div class="mod"> <input type="text" class="fr" placeholder="Rechercher..." [(ngModel)]="searchField"> </div> <div class="grid-4 has-gutter"> <app-card *ngFor="let person of persons | search:searchField | orderByFullName" [person]="person" [routerLink]="['/person', person.id]"> </app-card> </div>