playlist.html 1.3 KB

123456789101112131415161718192021222324252627
  1. <template name="playlist">
  2. <div class="input-field">
  3. <input type="text" id="search-playlist" style="padding-left: 10px;"/>
  4. <label for="search-playlist">Search playlist by song/artist</label>
  5. </div>
  6. <ul id="up-next">
  7. {{#each nextSong}}
  8. <p style="margin: -20px 0 0 15px; font-weight: 300;">Up Next</p>
  9. <li class="pl-item" style="color: rgb(3, 169, 244) !important;">
  10. <img onerror="this.src='/notes.png'" src={{img}} style="width: 80px; float: left; margin: 0 10px 10px 0;">
  11. <p style="float:right; margin-top: -20px;">{{formatTime duration}}</p>
  12. <p class="pl-title" style="font-size: 1.2em">{{title}}</p>
  13. <p id="pl-artist" style="margin-top: -20px; font-size: 0.7em">{{artist}}</p>
  14. </li>
  15. {{/each}}
  16. <hr style="clear: both">
  17. </ul>
  18. <ul id="playlist-ul" style="max-height: calc(100% - 240px); overflow-y: scroll;">
  19. {{#each playlist_songs}}
  20. <li class="pl-item" style="clear: both">
  21. <p style="float:right; margin-top: -20px;">{{formatTime duration}}</p>
  22. <p class="pl-title">{{title}}</p>
  23. <p id="pl-artist" style="margin-top: -10px">{{artist}}</p>
  24. </li>
  25. {{/each}}
  26. </ul>
  27. </template>