12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <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">
- <ul class="list-group">
- <li class="list-group-item">Users are now sorted by name, unlike the original code.</li>
- <li class="list-group-item">Try chatting with someone without logging in.</li>
- <li class="list-group-item">
- Try emoticons like ":smiley:" or ":bowtie"
- to get {{>emoji ":smiley:" }} or {{>emoji ":bowtie:" }}.
- </li>
- <li class="list-group-item">Use emoticons from this <a href="http://www.emoji-cheat-sheet.com/">Cheat sheet</a>.</li>
- </ul>
- </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>
|