You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
320 B
10 lines
320 B
<h1>{{ 'recipe.list' | transloco }}</h1>
|
|
|
|
<div id="recipe-list">
|
|
<app-recipe-mini *ngFor="let recipe of paginatedRecipes" [recipe]="recipe"></app-recipe-mini>
|
|
|
|
</div>
|
|
|
|
<mat-paginator class="pagination" (page)="handlePageEvent($event)" [length]="length" [pageSize]="pageSize"
|
|
[pageIndex]="pageIndex">
|
|
</mat-paginator> |