minstant.html 776 B

123456789101112131415161718192021222324252627282930313233343536373839
  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">Users are now sorted by name, unlike the original code. Try chatting with someone without logging in.</div>
  19. </div>
  20. </div>
  21. </template>
  22. <template name="Loading">
  23. Loading...
  24. </template>
  25. <template name="Error">
  26. <div class="jumbotron">
  27. <h1>{{ dump.error }}</h1>.
  28. <p>{{ dump.reason }}</p>
  29. </div>
  30. </template>