Last active
May 1, 2021 10:39
-
-
Save planetoftheweb/7f8e48a30e595ab918af4a148b8c4247 to your computer and use it in GitHub Desktop.
artist-details.component.html
This file contains hidden or 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 class="container mt-3"> | |
| <div class="row justify-content-center"> | |
| <div class="col-sm-4 col-lg-3"> | |
| <img class="img-fluid rounded" src="assets/images/{{artist.shortname}}.jpg" alt="{{artist.name}} photo"> | |
| </div> | |
| <div class="col-sm-8 col-lg-4"> | |
| <h2 class="mt-3 mt-sm-0 mb-0">{{artist.name}}</h2> | |
| <h4 class="mt-0">{{artist.reknown}}</h4> | |
| <p>{{artist.bio}}</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!--artistdetails--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment