about.html 969 B

1234567891011121314151617181920212223242526
  1. <div>
  2. <div class="page-header">
  3. <h1>About</h1>
  4. </div>
  5. <div class="row">
  6. <div class="span10" id="main">
  7. <p>
  8. Hi! This is just a side project I made where you can play Taboo online.
  9. I liked playing it with my friends during our Christmas party and I wanted
  10. to play a bit more.
  11. </p>
  12. <p>
  13. Feature-wise, it's a bit sparse. There's only one room and there is virtually
  14. no score tracking beyond a single round, but it should at least have the
  15. core game mechanics ok.
  16. </p>
  17. <p>
  18. There aren't that many words yet, and I'd greatly appreciate contributing
  19. some for the game. There's also an API for accessing the word list in case
  20. you want to build your own Taboo-like thing. <code>GET /cards</code> should
  21. give you the entire card list, while <code>GET /cards/random</code> will
  22. give you a random card each time.
  23. </p>
  24. </div>
  25. </div>
  26. </div>