Vulcan/client/views/comments/comment_reply.html
2014-07-05 16:21:28 +09:00

19 lines
400 B
HTML

<template name="comment_reply">
{{#if canComment "replace"}}
<div class="grid comment-page single-post">
{{#with post}}
{{> UI.dynamic template=post_item}}
{{/with}}
{{#with comment}}
<ul class="selected-comment">
{{> UI.dynamic template=comment_item}}
</ul>
{{/with}}
{{> UI.dynamic template=comment_form}}
</div>
{{/if}}
</template>