aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/playlist.template.html
blob: ece173416e4371701e97be3ca0e8b0eea238d626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="list-group">
    {{ #playlist }}
        <a 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>