dashboard.html 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <template name="dashboard">
  2. <div class="row">
  3. {{#each rooms}}
  4. {{#if private}}
  5. {{#if isModerator}}
  6. <div class="col-md-4 col-sm-6 col-xs-12">
  7. <div class="station" style="background-color: gray">
  8. <h3>{{display}}</h3>
  9. {{#with type=type}}
  10. <h5>{{currentSong.song.title}}</h5>
  11. <h6>{{currentSong.song.artist}}</h6>
  12. {{/with}}
  13. <a href="/{{type}}" class="station_link"></a>
  14. </div>
  15. </div>
  16. {{/if}}
  17. {{else}}
  18. <div class="col-md-4 col-sm-6 col-xs-12">
  19. <div class="station">
  20. <h3>{{display}}</h3>
  21. {{#with type=type}}
  22. <h5>{{currentSong.song.title}}</h5>
  23. <h6>{{currentSong.song.artist}}</h6>
  24. {{/with}}
  25. <a href="/{{type}}" class="station_link"></a>
  26. </div>
  27. </div>
  28. {{/if}}
  29. {{/each}}
  30. </div>
  31. </template>