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