2014-06-19 21:29:48 +08:00
|
|
|
<template name="chatbar">
|
|
|
|
<div id="chat">
|
|
|
|
this is the chat<br/><br/>
|
2014-06-20 01:52:08 +08:00
|
|
|
{{#each getMessagesInChat}}
|
2014-06-19 21:29:48 +08:00
|
|
|
{{> message}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template name="message">
|
|
|
|
<p>From {{from}}:</p>
|
|
|
|
<span> {{contents}}</span>
|
|
|
|
<hr/>
|
|
|
|
</template>
|