mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
47 lines
No EOL
1.6 KiB
HTML
47 lines
No EOL
1.6 KiB
HTML
<div class="resource-details playlist-details" bindonce="playlist">
|
|
<ul class="dropdowns">
|
|
<li class="dropdown">
|
|
<a href="#" class="btn btn-small btn-info dropdown-toggle">
|
|
Downloads
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
<li bindonce ng-repeat="format in playlist.formats"><a target="_blank" bo-href="format.url"><span bo-text="format.name"></span> <small bo-text="'(' + format.size + ')'"></small></a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="#" class="btn">Share or Embed</a></li>
|
|
<li><pfm-favourite-button resource="playlist" type="playlist"></pfm-favourite-button></li>
|
|
</ul>
|
|
|
|
<header>
|
|
<h1 bo-text="playlist.title"></h1>
|
|
<h2>
|
|
created by: <a bo-href="playlist.user.url" bo-text="playlist.user.name"></a>
|
|
</h2>
|
|
</header>
|
|
|
|
|
|
<div class="stretch-to-bottom details-columns">
|
|
<div class="right">
|
|
<img class="cover" bo-src="playlist.covers.normal" />
|
|
|
|
<ul class="stats">
|
|
<li>Created: <strong bo-text="playlist.created_at.date | pfmdate:'short'"></strong></li>
|
|
<li>Views: <strong bo-text="playlist.stats.views"></strong></li>
|
|
<li>Downloads: <strong bo-text="playlist.stats.downloads"></strong></li>
|
|
<li>Favourites: <strong bo-text="playlist.stats.favourites"></strong></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="left">
|
|
<div class="description" bo-show="playlist.description.length">
|
|
<h2>Description</h2>
|
|
<p bo-html="playlist.description | noHTML | newlines"></p>
|
|
</div>
|
|
|
|
<h2>Tracks</h2>
|
|
<pfm-tracks-list tracks="playlist.tracks"></pfm-tracks-list>
|
|
|
|
<pfm-comments type="playlist" resource="playlist"></pfm-comments>
|
|
</div>
|
|
</div>
|
|
</div> |