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-12 18:19:40 +00:00

12 lines
274 B
Plaintext

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