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