Vulcan/client/views/comments/comment_reply.html

22 lines
433 B
HTML
Raw Normal View History

2012-10-05 22:09:13 +09:00
<template name="comment_reply">
2014-07-05 16:21:28 +09:00
<div class="grid comment-page single-post">
2012-10-05 22:09:13 +09:00
{{#with post}}
<div class="posts">
{{> UI.dynamic template=post_item}}
</div>
2012-10-05 22:09:13 +09:00
{{/with}}
{{#with comment}}
<ul class="selected-comment">
2014-07-05 16:21:28 +09:00
{{> UI.dynamic template=comment_item}}
2012-10-05 22:09:13 +09:00
</ul>
{{/with}}
{{#if canComment}}
{{> UI.dynamic template=comment_form}}
{{/if}}
2012-10-05 22:09:13 +09:00
</div>
</template>