mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
21 lines
384 B
HTML
21 lines
384 B
HTML
<template name="comment_reply">
|
|
{{#if canComment "replace"}}
|
|
<div class="post grid comment-page">
|
|
{{#if post}}
|
|
{{#with post}}
|
|
{{> post_item}}
|
|
{{/with}}
|
|
{{/if}}
|
|
|
|
{{#if comment}}
|
|
{{#with comment}}
|
|
<ul class="selected-comment">
|
|
{{> comment_item}}
|
|
</ul>
|
|
{{/with}}
|
|
{{/if}}
|
|
|
|
{{> comment_form}}
|
|
</div>
|
|
{{/if}}
|
|
</template>
|