mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
21 lines
433 B
HTML
21 lines
433 B
HTML
<template name="comment_reply">
|
|
<div class="grid comment-page single-post">
|
|
|
|
{{#with post}}
|
|
<div class="posts">
|
|
{{> UI.dynamic template=post_item}}
|
|
</div>
|
|
{{/with}}
|
|
|
|
{{#with comment}}
|
|
<ul class="selected-comment">
|
|
{{> UI.dynamic template=comment_item}}
|
|
</ul>
|
|
{{/with}}
|
|
|
|
{{#if canComment}}
|
|
{{> UI.dynamic template=comment_form}}
|
|
{{/if}}
|
|
|
|
</div>
|
|
</template>
|