dashboard.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template name="dashboard">
  2. <div class="landing">
  3. {{> header}}
  4. <div class="row">
  5. {{#each rooms}}
  6. <div class="col-md-4 col-sm-6 col-xs-12">
  7. <div class="station">
  8. <h3>{{type}}</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. {{/each}}
  17. </div>
  18. <ul class="bg-bubbles">
  19. <li></li>
  20. <li></li>
  21. <li></li>
  22. <li></li>
  23. <li></li>
  24. <li></li>
  25. <li></li>
  26. <li></li>
  27. <li></li>
  28. <li></li>
  29. </ul>
  30. </div>
  31. <script type="text/javascript">
  32. window.doorbellOptions = {
  33. appKey: 'v2Gu14c8s9HgBsAFCXNWIm2vlk11N12Plt2Wu5k2MbQIkM1Ao6kOTCbfN95ElEVM',
  34. hideEmail: true
  35. };
  36. (function(d, t) {
  37. var g = d.createElement(t);g.id = 'doorbellScript';g.type = 'text/javascript';g.async = true;g.src = 'https://embed.doorbell.io/button/2408?t='+(new Date().getTime());(d.getElementsByTagName('head')[0]||d.getElementsByTagName('body')[0]).appendChild(g);
  38. }(document, 'script'));
  39. </script>
  40. </template>