123456789101112131415161718 |
- <!-- Top level template for the chat page -->
- <template name="chat_page">
- <h2>Chatting with {{ other.profile.username }} </h2>
- <div class="well well-lg">
- {{#each message in messages}}
- {{> chat_message other=other message=message }}
- {{/each}}
- </div>
- <p>Type in the box below to send a message!</p>
- <div class="row">
- <div class="col-md-12">
- <form class="js-send-chat">
- <input class="input" type="text" name="chat" placeholder="type a message here...">
- <button class="btn btn-default">send</button>
- </form>
- </div>
- </div>
- </template>
|