Vulcan/client/views/comments/comment_reply.html
2013-10-26 10:47:13 +09:00

19 lines
333 B
HTML

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