123456789101112131415161718192021222324252627282930313233343536373839 |
- <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. Try chatting with someone without logging in.</div>
- </div>
- </div>
- </template>
- <template name="Loading">
- Loading...
- </template>
- <template name="Error">
- <div class="jumbotron">
- <h1>{{ dump.error }}</h1>.
- <p>{{ dump.reason }}</p>
- </div>
- </template>
|