-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchat1.html
36 lines (34 loc) · 831 Bytes
/
chat1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<head>
<title>Meteor Chat</title>
</head>
<body>
<div class="container">
<header>
<h1>Meteor Chat</h1>
{{> loginButtons}}
</header>
<ul class="message-window">
{{#each recentMessages}}
{{> message}}
{{/each}}
</ul>
{{#momentum plugin="fade"}}
{{#if thereAreUnreadMessages}}
<button class="more-messages">New Messages ▾</button>
{{/if}}
{{/momentum}}
<footer>
{{#if currentUser}}
<form class="new-message">
<input type="text" name="text" placeholder="Add a message" autocomplete="off" />
</form>
{{/if}}
</footer>
</div>
</body>
<template name="message">
<li class="message">
<div class="username">{{username}}</div>
<div class="message-text">{{messageText}}</div>
</li>
</template>