Created
October 6, 2019 07:56
-
-
Save gmerabishvili/89d2d0872f3f9b03fef902d4cdf9a81b to your computer and use it in GitHub Desktop.
home.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div fxFlex fxLayout="column" fxLayoutGap="10px"> | |
<div fxLayout="row wrap"> | |
<!-- loop over the artists list and show the cards --> | |
<div | |
*ngFor="let artist of artists$ | async" | |
fxFlex="25" | |
fxFlex.md="33" | |
fxFlex.sm="50" | |
fxFlex.xs="100" | |
fxLayout="column"> | |
<!-- cards here --> | |
<mat-card class="mat-elevation-z1"> | |
<img mat-card-image [src]="artist.imgSrc"/> | |
<mat-card-title> {{ artist.artist }}</mat-card-title> | |
<mat-card-content> {{ artist.description }}</mat-card-content> | |
<mat-card-footer> | |
<button fxFlex mat-flat-button color="primary" | |
[routerLink]="['/artist',artist.id]" [queryParams]="{ song: 1}"> | |
See more | |
</button> | |
</mat-card-footer> | |
</mat-card> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment