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