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

13 lines
296 B
Plaintext

<ol class="artists">
<% list(items, function(artist) { %>
<li id="<%= artist.attr('id') %>">
<%== can.route.link(artist.attr('name'), {
page: 'library',
pane: pane + 1,
show: 'albums',
artist: artist.attr('name')
}) %>
</li>
<% }) %>
</ol>