Vulcan/client/views/comments/comment_reply.html

22 lines
382 B
HTML
Raw Normal View History

2012-10-05 22:09:13 +09:00
<template name="comment_reply">
{{#if canComment replace}}
2012-10-05 22:09:13 +09:00
<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>