dashboard.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template name="dashboard">
  2. <div class="landing">
  3. <div class="row">
  4. {{#each rooms}}
  5. <div class="col-md-4 col-sm-6 col-xs-12">
  6. <div class="station">
  7. <h3>{{type}}</h3>
  8. {{#with type=type}}
  9. <h5>{{currentSong.song.title}}</h5>
  10. {{/with}}
  11. <a href="/{{type}}" class="station_link"></a>
  12. </div>
  13. </div>
  14. {{/each}}
  15. </div>
  16. <ul class="bg-bubbles">
  17. <li></li>
  18. <li></li>
  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. </ul>
  28. </div>
  29. <script type="text/javascript">
  30. window.doorbellOptions = {
  31. appKey: 'v2Gu14c8s9HgBsAFCXNWIm2vlk11N12Plt2Wu5k2MbQIkM1Ao6kOTCbfN95ElEVM',
  32. hideEmail: true
  33. };
  34. (function(d, t) {
  35. 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);
  36. }(document, 'script'));
  37. </script>
  38. </template>