mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
8 lines
306 B
HTML
8 lines
306 B
HTML
<ol class="songs">
|
|
<li ng-repeat="entry in currentPane().entries" ng-click="newPane('/songs', { title: entry.title, artist: entry.artist })">
|
|
<p class="title">{{ entry.title }}</p>
|
|
<p class="artist">{{ entry.artist }}</p>
|
|
<p class="length">{{ entry.length | formatLength }}</p>
|
|
</li>
|
|
</ol>
|