1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/public/views/library/songs.ejs
2013-12-13 16:20:36 +00:00

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>