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-12 11:46:09 +00:00

14 lines
476 B
Plaintext

<header>
<a class="library" href="#!library">Library</a>
<h1>Queue</h1>
</header>
<ol class="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>
<p class="length"><%= formatLength(song.attr('length')) %></p>
</li>
<% }) %>
</ol>