diff options
Diffstat (limited to 'src/templates/playlist.template.html')
-rw-r--r-- | src/templates/playlist.template.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/templates/playlist.template.html b/src/templates/playlist.template.html new file mode 100644 index 0000000..d01f0d6 --- /dev/null +++ b/src/templates/playlist.template.html @@ -0,0 +1,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>
\ No newline at end of file |