26 lines
967 B
HTML
26 lines
967 B
HTML
<div class="d-flex align-items-stretch">
|
|
<app-filter-side-bar [listCategories]="listCategoriesFilter"></app-filter-side-bar>
|
|
|
|
<div class="custom-main container p-3">
|
|
<input class="form-control"
|
|
type="text"
|
|
placeholder="Recherche ta belle plante"
|
|
aria-label="Input Recherche ta belle plante">
|
|
|
|
<div class="py-3">
|
|
Trier par :
|
|
<button class="btn btn-outline-success btn-sm me-2" (click)="onPriceTri()">Prix</button>
|
|
<button class="btn btn-outline-success btn-sm me-2"(click)="onAlphaTri()">Ordre Alpha</button>
|
|
<button class="btn btn-outline-success btn-sm me-2" (click)="onRatingTri()">Avis</button>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col" *ngFor="let product of listData">
|
|
<app-card-plante [plant]="product"
|
|
(clickLike)="onEventLike()">
|
|
</app-card-plante>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|