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