1
0
mirror of https://github.com/danbee/neompc synced 2025-03-04 08:39:10 +00:00
neompc/templates/default/browse.html
Dan Barber 9a3fbae4fd + Button at the top now lights up to let you know what mode you're at.
+ 'Add' and 'Play' buttons now recurse down the file tree. Be careful about hitting this button at the top level if you've got a big library!

~ Playlist now highlights currently playing track.
2007-05-13 19:43:39 +00:00

18 lines
633 B
HTML

<ul id="crumb_trail">
<li><a href="index.php?browse=/"><img src="images/home.gif" alt="Home" /></a></li>
{foreach from=$dir_list item=dir_list_item}
<li>&bull; <a href="index.php?browse={$dir_list_item.path}">{$dir_list_item.name|escape:'html'}</a></li>
{/foreach}
</ul>
<div id="buttons"><a href="index.php?action=playall"><img src="images/playall.gif" /></a> <a href="index.php?action=addall"><img src="images/addall.gif" /></a></div>
<ul class="list">
{foreach from=$browselist item=browselist_item}
{include file="default/browselist_item.html"}
{/foreach}
</ul>