dashboard.html 525 B

12345678910111213141516
  1. <template name="dashboard">
  2. <div class="row">
  3. {{#each rooms}}
  4. <div class="col-md-4 col-sm-6 col-xs-12">
  5. <div class="station">
  6. <h3>{{display}}</h3>
  7. {{#with type=type}}
  8. <h5>{{currentSong.song.title}}</h5>
  9. <h6>{{currentSong.song.artist}}</h6>
  10. {{/with}}
  11. <a href="/{{type}}" class="station_link"></a>
  12. </div>
  13. </div>
  14. {{/each}}
  15. </div>
  16. </template>