15 lines
639 B
HTML
15 lines
639 B
HTML
<div class="container-fluid" style="background-color: #53709f;">
|
|
<div class="container">
|
|
<div class="row py-5">
|
|
<ng-container *ngFor="let c of categories | async">
|
|
<mat-card *ngIf="c.ready" class="m-3">
|
|
<img mat-card-image [src]="c.image | async" [alt]="c.name" style="width: 200px; height: 200px;">
|
|
<mat-divider class="custom-line"></mat-divider>
|
|
<mat-card-content>
|
|
<h5>{{c.name}}</h5>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
</ng-container>
|
|
</div>
|
|
</div>
|
|
</div> |