1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/public/views/queue.mustache
2014-01-08 11:19:17 +00:00

14 lines
361 B
Plaintext

<header>
<a class="library" href="#!library">Library</a>
<h1>Queue</h1>
</header>
<ol class="queue">
{{#queueSongs}}
<li id="{{id}}" data-pos="{{pos}}" class="{{#playing}}playing{{/playing}}">
<p class="title">{{title}}</p>
<p class="artist">{{artist}}</p>
<p class="length">{{formattedLength}}</p>
</li>
{{/queueSongs}}
</ol>