1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/public/views/queue.ejs
2013-12-04 16:36:19 +00:00

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>