2012-09-06 10:18:26 +09:00
|
|
|
<template name="comment_page">
|
2012-09-08 12:11:26 +09:00
|
|
|
<div class="post grid comment-page">
|
2012-09-27 17:25:29 -07:00
|
|
|
{{#if post}}
|
|
|
|
{{#with post}}
|
|
|
|
{{> post_item}}
|
|
|
|
{{/with}}
|
2012-09-05 11:55:06 +09:00
|
|
|
{{/if}}
|
2012-09-26 22:11:44 -07:00
|
|
|
|
|
|
|
{{#if comment}}
|
2012-09-05 11:55:06 +09:00
|
|
|
{{#with comment}}
|
2012-09-10 22:35:35 +09:00
|
|
|
<ul class="selected-comment">
|
|
|
|
{{> comment_item}}
|
|
|
|
</ul>
|
2012-09-05 11:55:06 +09:00
|
|
|
{{/with}}
|
2012-09-26 22:11:44 -07:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if currentUser}}
|
|
|
|
{{> comment_form}}
|
|
|
|
{{/if}}
|
2012-09-05 11:55:06 +09:00
|
|
|
</div>
|
|
|
|
</template>
|