-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbfc897
commit 655fc0e
Showing
3 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
<div class="col animated fadeIn"> | ||
<div class="row row-cols-1 row-cols-md-4 g-12"> | ||
<div class="row animated fadeIn"> | ||
|
||
|
||
<div *ngFor="let item of items" (click)="showArtist(item)" class="card m-1 pointer"> | ||
<img [src]=" item.images | noimg" class="card-img-top " alt={{item.name}}> | ||
<div class=" card-body "> | ||
<h5 class="card-title ">{{item.name}}</h5> | ||
<p *ngFor="let artist of item.artists " class="card-text d-inline "><span class="badge rounded-pill bg-primary ">{{artist.name}}</span></p> | ||
<p class="card-text "><small class="text-muted ">Last updated 3 mins ago</small></p> | ||
</div> | ||
<div *ngFor="let item of items " (click)="showArtist(item) " class=" col-md-3 card pointer "> | ||
<img [src]=" item.images | noimg " class="card-img-top " alt={{item.name}}> | ||
<div class=" card-body "> | ||
<h5 class="card-title ">{{item.name}}</h5> | ||
<p *ngFor="let artist of item.artists " class="card-text d-inline "><span class="badge rounded-pill bg-primary ">{{artist.name}}</span></p> | ||
<p class="card-text "><small class="text-muted ">Last updated 3 mins ago</small></p> | ||
</div> | ||
</div> | ||
</div> |
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
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