|
|
|
@@ -65,7 +65,10 @@ |
|
|
|
<div class="rating"> <ion-icon name="star"></ion-icon> {{ item.rating }} </div> |
|
|
|
<img src="{{ item.image_url }}"> |
|
|
|
<h5> {{ item.name }} </h5> |
|
|
|
<p> {{ item.description }} </p> |
|
|
|
<p [ngClass]="{'expand' : selected_description === item.id }"> {{ item.description }} |
|
|
|
<a *ngIf="selected_description !== item.id" (click)="selected_description = item.id"> More </a> |
|
|
|
<a *ngIf="selected_description === item.id" (click)="selected_description = null"> Less </a> |
|
|
|
</p> |
|
|
|
<div class="label-holder"> |
|
|
|
<div class="category" [ngClass]="{'non-veg' : !item.is_vegeterian, 'veg' : item.is_vegeterian }"></div> |
|
|
|
<span *ngIf="!item.is_vegeterian"> Non-Veg Meals </span> |
|
|
|
|