minstant.html 424 B

12345678910111213141516171819202122232425
  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. </template>
  17. <template name="Loading">
  18. Loading...
  19. </template>