1
0
mirror of https://github.com/danbee/neompc synced 2025-03-04 08:39:10 +00:00
neompc/templates/default/playlist.html
Dan Barber 548670fd42 + Cover image filenames can now consist of variables.
+ Shuffle button added to playlist screen.
2010-01-24 18:56:09 +00:00

22 lines
607 B
HTML

<div id="list_header">
<div id="buttons">
<a id="removeall" href="{:$playlist_clear_link:}"><img src="templates/{:$template:}/images/delall.png" /></a>
</div>
<div id="buttons_left">
<a id="shuffle" href="{:$playlist_shuffle_link:}"><img src="templates/{:$template:}/images/shuffle.png" /></a>
</div>
</div>
{:if $playlist:}
<div id="list">
<ul class="list">
{:foreach from=$playlist item=playlist_item:}
{:include file="default/playlist_item.html":}
{:/foreach:}
</ul>
</div>
{:else:}
<p>(Empty playlist)</p>
{:/if:}