blob: d01f0d67c1221e98fb75587d4387510a0db41ace (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div class="list-group">
{{ #playlist }}
<a href="#"
class="list-group-item list-group-item-action {{ #isPlaying }}active{{ /isPlaying }}"
onclick="player.play({{index}})">
<h6>
{{ title }}
<small class="text-muted">{{ genre }}</small>
</h6>
<small>
{{ artist }}
</small>
</a>
{{ /playlist }}
</div>
|