mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
14 lines
469 B
Plaintext
14 lines
469 B
Plaintext
<header>
|
|
<button class="library">Library</button>
|
|
<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>
|