1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <section id="carte">
<h2>NOTRE CARTE</h2>
<article id="banner">
<img src="assets/Ressources/Images/banner_plats.jpg" alt="Plats">
</article>
<ng-container *ngFor='let m of menu;'>
<ng-container *ngIf="checkCategory(m.category.description)">
<article id="item.Category.Description.ToString().Trim()">
<h2>{{m.category.description |uppercase}}</h2>
</article>
</ng-container>
<ul class="plats">
<li>
{{m.title | uppercase}}
<span class="price">{{m.price | number:'1.2-2'}} €</span>
<span class="ingredients">{{m.ingredients}}</span>
</li>
</ul>
<ng-container *ngIf="setPreviousCategory(m.category.description)"></ng-container>
</ng-container>
</section> |