mirror of
https://github.com/danbee/mpd-client
synced 2026-06-21 05:42:21 +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>
|