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

13 lines
305 B
Plaintext

<ol class="albums">
<% list(items, function(album) { %>
<li id="<%= album.attr('id') %>">
<%== can.route.link(album.attr('title'), {
page: 'library',
show: 'songs',
artist: album.attr('artist'),
album: album.attr('title')
}) %>
</li>
<% }) %>
</ol>