12345678910111213141516171819202122232425262728293031 |
- <head>
- <title>minstant</title>
- </head>
- <body>
- </body>
- <!-- this is the main template used by iron:router to build the page -->
- <template name="ApplicationLayout">
- {{> yield "header"}}
- <div class="container">
- {{> yield "main"}}
- </div>
- </template>
- <!-- Top level template for the lobby page -->
- <template name="lobby_page">
- {{> available_user_list}}
- </template>
- <!-- simple template that displays a message -->
- <template name="chat_message">
- someone said: {{text}}
- <br>
- </template>
- <template name="Loading">
- Loading...
- </template>
|