playlist.html 451 B

1234567891011121314
  1. <template name="playlist">
  2. <div class="row">
  3. <div class="pl-container col-md-4 col-sm-4 col-xs-4 col-md-offset-4 col-sm-offset-4 col-xs-offset-4">
  4. <h4>Playlist</h4>
  5. <ul id="playlist">
  6. {{#each playlist_songs}}
  7. <li class="playlist-song">
  8. {{title}} - {{artist}}
  9. </li>
  10. {{/each}}
  11. </ul>
  12. </div>
  13. </div>
  14. </template>