1234567891011121314151617181920212223242526272829303132 |
- <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}}
- <div class="container">
- <div class="panel panel-default">
- <div class="panel-body">Users are now sorted by name, unlike the original code.</div>
- </div>
- </div>
- </template>
- <template name="Loading">
- Loading...
- </template>
|