groovebasin/views/library.handlebars
2012-01-22 06:58:55 -08:00

30 lines
743 B
Handlebars

<div>
<input type="text" id="lib-filter" placeholder="filter">
<select id="organize">
<option selected="selected">Artist / Album / Song</option>
</select>
</div>
{{#if artists}}
<ul>
{{#artists}}
<li class="expand"><a href="#" class="artist">{{name}}</a>
<ul>
{{#hash albums}}
<li class="expand"><a href="#" class="album">{{key}}</a>
<ul>
{{#each val}}
<li>
<a href="#" class="track" data-file="{{file}}">{{Track}}. {{Title}}</a>
</li>
{{/each}}
</ul>
</li>
{{/hash}}
</ul>
</li>
{{/artists}}
</ul>
{{else}}
Empty library
{{/if}}