2012-10-05 22:09:13 +09:00
|
|
|
<template name="comment_reply">
|
2012-11-19 12:03:06 +09:00
|
|
|
{{#if canComment "replace"}}
|
2012-10-05 22:09:13 +09:00
|
|
|
<div class="post grid comment-page">
|
2013-10-26 10:47:13 +09:00
|
|
|
|
2012-10-05 22:09:13 +09:00
|
|
|
{{#with post}}
|
2014-07-05 11:42:28 +09:00
|
|
|
{{> UI.dynamic template=post_item}}
|
2012-10-05 22:09:13 +09:00
|
|
|
{{/with}}
|
|
|
|
|
|
|
|
{{#with comment}}
|
|
|
|
<ul class="selected-comment">
|
2014-07-05 11:42:28 +09:00
|
|
|
{{ UI.dynamic template=comment_item}}
|
2012-10-05 22:09:13 +09:00
|
|
|
</ul>
|
|
|
|
{{/with}}
|
|
|
|
|
|
|
|
{{> comment_form}}
|
2013-10-26 10:47:13 +09:00
|
|
|
|
2012-10-05 22:09:13 +09:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</template>
|