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">
|
2013-10-26 10:47:13 +09:00
|
|
|
|
2012-10-05 22:09:13 +09:00
|
|
|
{{#with post}}
|
2015-01-20 12:35:09 +09:00
|
|
|
<div class="posts posts-list">
|
2014-07-07 09:36:38 +09:00
|
|
|
{{> UI.dynamic template=post_item}}
|
|
|
|
</div>
|
2012-10-05 22:09:13 +09:00
|
|
|
{{/with}}
|
|
|
|
|
|
|
|
{{#with comment}}
|
2015-02-12 23:44:59 -06:00
|
|
|
<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}}
|
|
|
|
|
2014-07-07 09:36:38 +09:00
|
|
|
{{#if canComment}}
|
|
|
|
{{> UI.dynamic template=comment_form}}
|
|
|
|
{{/if}}
|
|
|
|
|
2015-03-13 10:18:24 +09:00
|
|
|
{{#if isLoggedIn}}
|
|
|
|
{{else}}
|
|
|
|
<p><a href="/sign-in">{{_ "please_sign_in_to_reply"}}</a></p>
|
|
|
|
{{/if}}
|
2012-10-05 22:09:13 +09:00
|
|
|
</div>
|
|
|
|
</template>
|