Pony.fm/public/templates/playlists/show.html

64 lines
3.3 KiB
HTML
Raw Normal View History

2013-08-27 08:53:37 +02:00
<div class="resource-details playlist-details" bindonce="playlist">
2015-10-25 03:35:37 +01:00
<ul class="dropdowns">
<li class="dropdown">
<a href="#" class="btn btn-small btn-info dropdown-toggle" auto-close="outsideClick">
2015-10-25 03:35:37 +01:00
Downloads
</a>
<ul class="dropdown-menu">
<li bindonce ng-repeat="format in playlist.formats" ng-hide="isInProgress">
<a target="_blank" ng-if="!format.isCacheable" bo-href="format.url">
<span bo-text="format.name"></span>
<small bo-text="'(' + format.size + ')'"></small>
</a>
<a ng-if="format.isCacheable" ng-click="getCachedPlaylist(playlist.id, format.name);" href="">
<span bo-text="format.name"></span>
<small bo-text="'(' + format.size + ')'"></small>
</a>
</li>
<li ng-show="isInProgress" class="cache-loading"><img src="/images/loading.gif" /></li>
<li ng-show="isInProgress" class="cache-loading"><small>We&#39;re getting your download ready! This may take up to a few minutes.</small></li>
2015-10-25 03:35:37 +01:00
</ul>
</li>
<li><a href="#" class="btn" pfm-eat-click ng-click="share()">Share</a></li>
<li><pfm-favourite-button resource="playlist" type="playlist"></pfm-favourite-button></li>
</ul>
2013-08-01 10:57:08 +02:00
2015-10-25 03:35:37 +01:00
<header>
<h1 bo-text="playlist.title"></h1>
<h2>
created by: <a bo-href="playlist.user.url" bo-text="playlist.user.name"></a>
</h2>
</header>
2013-08-01 10:57:08 +02:00
2015-10-25 03:35:37 +01:00
<div class="stretch-to-bottom details-columns">
<div class="right">
<img class="cover" pfm-src-loader="playlist.covers.normal" pfm-src-size="normal" />
2013-08-01 10:57:08 +02:00
2015-10-25 03:35:37 +01:00
<div class="share-buttons" pfm-share-buttons>
<a class="tumblr" bo-href="playlist.share.tumblrUrl" title="Share on Tumblr" style="display:inline-block; overflow:hidden; width:20px; height:20px; background:url('/images/tumblr-share.png') top left no-repeat transparent;"></a>
<div class="facebook fb-like" data-href="{{playlist.url}}" data-width="450" data-layout="button_count" data-show-faces="true" data-send="false"></div>
<iframe class="twitter" allowtransparency="true" frameborder="0" scrolling="no" bo-src="playlist.share.twitterUrl" style="width:130px; height:20px;"></iframe>
</div>
2015-10-25 03:35:37 +01:00
<ul class="stats">
<li>Created: <strong bo-text="playlist.created_at | pfmdate:'medium'"></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>
2013-08-27 08:53:37 +02:00
2015-10-25 03:35:37 +01:00
<div class="left">
<div class="description" bo-show="playlist.description.length">
<h2>Description</h2>
<p bo-html="playlist.description | noHTML | newlines"></p>
</div>
2013-08-01 10:57:08 +02:00
2015-10-25 03:35:37 +01:00
<h2>Tracks</h2>
<pfm-tracks-list tracks="playlist.tracks"></pfm-tracks-list>
2015-10-25 03:35:37 +01:00
<pfm-comments type="playlist" resource="playlist"></pfm-comments>
</div>
</div>
</div>