Vulcan/client/views/comments/comment_reply.html

22 lines
463 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}}
2015-01-20 12:35:09 +09:00
<div class="posts posts-list">
{{> UI.dynamic template=post_item}}
</div>
2012-10-05 22:09:13 +09:00
{{/with}}
{{#with comment}}
<ul class="selected-comment" aria-live="polite">
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>