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 b46e8f7441 ~ Fixed problems with apostrophes and ampersands in paths/names. Still need to sort out international characters.
+ Tracks in an album are now sorted by tracknumber.

+ Added config file.
2007-05-10 13:52:32 +00:00

18 lines
653 B
HTML

<ul id="crumb_trail">
<li>&bull; <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|escape:'url'}">{$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>