room.html 846 B

1234567891011121314151617181920212223242526
  1. <template name="room">
  2. <div class="landing">
  3. <h1 class="room-name">{{{type}}}</h1>
  4. <h2 class="room-title">{{{title}}}</h2>
  5. <h2 class="room-artist">{{{artist}}}</h2>
  6. <div id="seeker-bar"></div>
  7. <input type="text" id="song-input">
  8. <button type="button" id="search-song" class="button">Search</button>
  9. <div id="song-results"></div>
  10. <!--src="http://www.youtube.com/embed/XGSy3_Czz8k?autoplay=1&controls=0&autohide=1">-->
  11. <iframe width="960" height="540" id="player">
  12. </iframe>
  13. <ul class="bg-bubbles">
  14. <li></li>
  15. <li></li>
  16. <li></li>
  17. <li></li>
  18. <li></li>
  19. <li></li>
  20. <li></li>
  21. <li></li>
  22. <li></li>
  23. <li></li>
  24. </ul>
  25. </div>
  26. </template>