You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
611 B
HTML

<div class="product-card">
<div class="card-content">
<div class="card-img-container">
<img src={{product.url}} class="card-img" alt="{{product.name}}">
</div>
<div class="card-info">
<span class="name">{{product.name}}</span>
<span class="description">{{product.description}}</span>
<span class="price">{{product.price | currency}}</span>
</div>
<div class="card-buttons">
<button mat-raised-button color="primary" routerLink="/product/{{product.id}}">Details</button>
</div>
</div>
</div>