Vulcan/client/views/comments/comment_reply.html

20 lines
333 B
HTML
Raw Normal View History

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">
2012-10-05 22:09:13 +09:00
{{#with post}}
{{> post_item}}
{{/with}}
{{#with comment}}
<ul class="selected-comment">
{{> comment_item}}
</ul>
{{/with}}
{{> comment_form}}
2012-10-05 22:09:13 +09:00
</div>
{{/if}}
</template>