minstant.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <head>
  2. <title>minstant</title>
  3. </head>
  4. <body>
  5. </body>
  6. <!-- this is the main template used by iron:router to build the page -->
  7. <template name="ApplicationLayout">
  8. {{> yield "header"}}
  9. <div class="container">
  10. {{> yield "main"}}
  11. </div>
  12. </template>
  13. <!-- Top level template for the lobby page -->
  14. <template name="lobby_page">
  15. {{> available_user_list}}
  16. <div class="container">
  17. <div class="panel panel-default">
  18. <div class="panel-body">
  19. <ul class="list-group">
  20. <li class="list-group-item">Users are now sorted by name, unlike the original code.</li>
  21. <li class="list-group-item">Try chatting with someone without logging in.</li>
  22. <li class="list-group-item">
  23. Try emoticons like ":smiley:" or ":bowtie"
  24. to get {{>emoji ":smiley:" }} or {{>emoji ":bowtie:" }}.
  25. </li>
  26. <li class="list-group-item">Use emoticons from this <a href="http://www.emoji-cheat-sheet.com/">Cheat sheet</a>.</li>
  27. </ul>
  28. </div>
  29. </div>
  30. </div>
  31. </template>
  32. <template name="Loading">
  33. Loading...
  34. </template>
  35. <template name="Error">
  36. <div class="jumbotron">
  37. <h1>{{ dump.error }}</h1>.
  38. <p>{{ dump.reason }}</p>
  39. </div>
  40. </template>