mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
22 lines
379 B
HTML
22 lines
379 B
HTML
![]() |
<template name="comment_reply">
|
||
|
{{#if canComment true}}
|
||
|
<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>
|