1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/assets/js/views/queue.html
2014-03-21 14:51:40 +00:00

13 lines
346 B
HTML

<div id="queue" ng-controller="queue">
<header>
<a class="library" href="#!library">Library</a>
<h1>Queue</h1>
</header>
<ol class="songs">
<li ng-repeat="song in queueSongs" ng-class="{ playing: song.playing }">
<p class="title">{{ song.title }}</p>
<p class="artist">{{ song.artist }}</p>
</li>
</ol>
</div>