mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
12 lines
274 B
Plaintext
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>
|