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

16 lines
430 B
HTML
Raw Normal View History

2013-08-01 04:47:21 +02:00
<div class="row-fluid">
<div class="span6">
<div bo-show="artist.bio.trim().length">
2013-08-01 04:47:21 +02:00
<h2>Bio</h2>
<div class="description">
<p bo-html="artist.bio | noHTML | newlines"></p>
2013-08-01 04:47:21 +02:00
</div>
</div>
2013-08-01 10:57:08 +02:00
<pfm-comments type="user" resource="artist"></pfm-comments>
2013-08-01 04:47:21 +02:00
</div>
<div class="span6 cover-image">
<h2>Recent Tracks</h2>
<pfm-tracks-list tracks="artist.latest_tracks" class="two-columns no-artist" />
2013-08-01 04:47:21 +02:00
</div>
</div>