Vulcan/client/views/comments/comment_reply.html
2012-11-19 12:03:06 +09:00

21 lines
384 B
HTML

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