Vulcan/client/views/comments/comment_reply.html
2014-07-07 09:36:38 +09:00

21 lines
433 B
HTML

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