mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
9 lines
263 B
Plaintext
9 lines
263 B
Plaintext
<h2>Queue</h2>
|
|
<ul id="queue">
|
|
<% list(queueSongs, function(song) { %>
|
|
<li id="<%= song.attr('id') %>"<%= song.attr('id') == status.songid ? ' class="playing"' : '' %>>
|
|
<%= song.attr('artist') %> - <%= song.attr('title') %>
|
|
</li>
|
|
<% }) %>
|
|
</ul>
|