home.html 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <template name="home">
  2. {{> header}}
  3. <main>
  4. <div class="col s12 m10 l8">
  5. <div class="row">
  6. {{#each rooms}}
  7. <div class="col s12 m5 l2">
  8. <div class="card">
  9. <div class="card-image waves-effect waves-block waves-light">
  10. <a href=/{{type}}>
  11. <img onerror="this.src='http://static.boredpanda.com/blog/wp-content/uploads/2014/04/amazing-fox-photos-182.jpg'" src={{currentSong.song.img}}>
  12. <figcaption>
  13. <h5>{{currentSong.song.title}}</h5>
  14. <h5>{{currentSong.song.artist}}</h5>
  15. <a href=/{{type}} class="waves-effect waves-light btn">Join Room</a>
  16. </figcaption>
  17. </a>
  18. </div>
  19. <div class="card-content">
  20. <span class="card-title grey-text text-darken-4">{{display}}</span><div><span class="user-num">{{userNum}}</span> <i class="material-icons">perm_identity</i></div>
  21. <p>{{roomDesc}}</p>
  22. </div>
  23. <div class="card-action">
  24. <a href=/{{type}}>Join Room</a>
  25. </div>
  26. </div>
  27. </div>
  28. {{/each}}
  29. </div>
  30. </div>
  31. </main>
  32. {{> footer}}
  33. </template>