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-05 16:41:48 +00:00

9 lines
283 B
Plaintext

<ol id="queue">
<% list(queueSongs, function(song) { %>
<li id="<%= song.attr('id') %>" <%= song.attr('playing') ? 'class="playing"' : '' %>>
<p class="title"><%= song.attr('title') %></p>
<p class="artist"><%= song.attr('artist') %></p>
</li>
<% }) %>
</ol>