2012-10-05 22:09:13 +09:00
|
|
|
<template name="comment_reply">
|
2014-07-05 16:21:28 +09:00
|
|
|
<div class="grid comment-page single-post">
|
2013-10-26 10:47:13 +09:00
|
|
|
|
2012-10-05 22:09:13 +09:00
|
|
|
{{#with post}}
|
2014-07-07 09:36:38 +09:00
|
|
|
<div class="posts">
|
|
|
|
{{> UI.dynamic template=post_item}}
|
|
|
|
</div>
|
2012-10-05 22:09:13 +09:00
|
|
|
{{/with}}
|
|
|
|
|
|
|
|
{{#with comment}}
|
|
|
|
<ul class="selected-comment">
|
2014-07-05 16:21:28 +09:00
|
|
|
{{> UI.dynamic template=comment_item}}
|
2012-10-05 22:09:13 +09:00
|
|
|
</ul>
|
|
|
|
{{/with}}
|
|
|
|
|
2014-07-07 09:36:38 +09:00
|
|
|
{{#if canComment}}
|
|
|
|
{{> UI.dynamic template=comment_form}}
|
|
|
|
{{/if}}
|
|
|
|
|
2012-10-05 22:09:13 +09:00
|
|
|
</div>
|
|
|
|
</template>
|