minstant.html 547 B

12345678910111213141516171819202122232425262728293031
  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. <!-- simple template that displays a message -->
  18. <template name="chat_message">
  19. someone said: {{text}}
  20. <br>
  21. </template>
  22. <template name="Loading">
  23. Loading...
  24. </template>