mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
10 lines
297 B
Plaintext
10 lines
297 B
Plaintext
<ol class="songs">
|
|
<% list(items, function(song) { %>
|
|
<li id="<%= song.attr('id') %>">
|
|
<p class="title"><%= song.attr('title') %></p>
|
|
<p class="artist"><%= song.attr('artist') %></p>
|
|
<p class="length"><%= formatLength(song.attr('length')) %></p>
|
|
</li>
|
|
<% }) %>
|
|
</ol>
|