Vulcan/client/views/comments/comment_reply.html
2015-04-13 16:29:33 +09:00

25 lines
519 B
HTML

<template name="comment_reply">
<div class="grid comment-page single-post">
{{#with post}}
<div class="posts posts-list">
{{> post_item}}
</div>
{{/with}}
{{#with comment}}
<ul class="selected-comment" aria-live="polite">
{{> comment_item}}
</ul>
{{/with}}
{{#if canComment}}
{{> comment_form}}
{{/if}}
{{#if isLoggedIn}}
{{else}}
<p><a href="/sign-in">{{_ "please_sign_in_to_reply"}}</a></p>
{{/if}}
</div>
</template>