Pony.fm/public/templates/artists/profile.html

23 lines
829 B
HTML
Raw Normal View History

2013-08-01 04:47:21 +02:00
<div class="row-fluid">
<div class="col-md-6">
<div ng-show="::artist.bio.trim().length">
2015-10-25 03:35:37 +01:00
<h2>Bio</h2>
<div class="description">
<p marked="::artist.bio"></p>
2015-10-25 03:35:37 +01:00
</div>
</div>
2013-08-01 04:47:21 +02:00
<div ng-show="::artist.is_archived">
2016-01-05 16:53:01 +01:00
<h2>Archived profile</h2>
<p>This is an archived artist profile that&#39;s part of a music archive. If it&#39;s yours, email
2016-09-21 02:32:30 +02:00
<a href="mailto:logic@pony.fm" target="_blank">logic@pony.fm</a> to claim it!</p>
2016-01-05 16:53:01 +01:00
</div>
<pfm-comments type="user" resource="::artist"></pfm-comments>
2015-10-25 03:35:37 +01:00
</div>
<div class="col-md-6 cover-image">
2015-10-25 03:35:37 +01:00
<h2>Recent Tracks</h2>
<pfm-tracks-list tracks="::artist.latest_tracks" class="two-columns no-artist"></pfm-tracks-list>
2015-10-25 03:35:37 +01:00
</div>
</div>