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