mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
Removed some redundant files.
This commit is contained in:
parent
900d6bad23
commit
bbc81dacae
@ -1,13 +0,0 @@
|
||||
<ol class="albums">
|
||||
<% list(items, function(album) { %>
|
||||
<li id="<%= album.attr('id') %>">
|
||||
<%== can.route.link(album.attr('title'), {
|
||||
page: 'library',
|
||||
pane: pane + 1,
|
||||
show: 'songs',
|
||||
artist: album.attr('artist'),
|
||||
album: album.attr('title')
|
||||
}) %>
|
||||
</li>
|
||||
<% }) %>
|
||||
</ol>
|
||||
@ -1,12 +0,0 @@
|
||||
<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>
|
||||
@ -1,5 +0,0 @@
|
||||
<ul class="root">
|
||||
<li><%== can.route.link('Artists', { page: 'library', show: 'artists', pane: pane + 1 }) %></li>
|
||||
<li><%== can.route.link('Albums', { page: 'library', show: 'albums', pane: pane + 1 }) %></li>
|
||||
<li><%== can.route.link('Songs', { page: 'library', show: 'songs', pane: pane + 1 }) %></li>
|
||||
</ul>
|
||||
Loading…
Reference in New Issue
Block a user