project.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template name="project">
  2. {{> header}}
  3. <main class="content-box row">
  4. <div class="col s12 l4 m8 offset-l4 offset-m2">
  5. <h3 class="black-text thin">The Project</h3>
  6. <hr>
  7. <div class="card white">
  8. <div class="card-content black-text">
  9. <span class="card-title">What is Musare?</span>
  10. <p>
  11. Musare is an open-source music website where you can listen to real-time genre specific music stations with your friends, or just alone.
  12. </p>
  13. </div>
  14. </div>
  15. <div class="card white">
  16. <div class="card-content black-text">
  17. <span class="card-title">How can I help?</span>
  18. <p>
  19. There are essentially 3 main ways in which you can help us:
  20. <ol>
  21. <li>
  22. If you are a JavaScript developer, then we can use your help! Our project is open source and all the
  23. source code can be found on GitHub. We would love for you to create new features, add exciting
  24. content or just improve what already is on Musare. Also, if you see a bug or glitch on Musare, then
  25. create a new
  26. "issue" on GitHub and we will fix it as soon as possible. You can also have a try at fixing a
  27. bug that you may find!
  28. </li>
  29. <li>
  30. If you are not a developer but want some way of supporting us - you can donate to Musare. Any
  31. amount of donation is highly appreciated, and will help us maintain server costs.
  32. </li>
  33. <li>
  34. Send us feedback! Your comments and/or suggestion are extremely valuable to us. In order to improve
  35. we need to know what you like, don't like or what you might want on the app.
  36. </li>
  37. </ol>
  38. </p>
  39. </div>
  40. </div>
  41. </div>
  42. </main>
  43. {{> footer}}
  44. </template>