mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
21 lines
380 B
HTML
21 lines
380 B
HTML
<template name="comment_page">
|
|
<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}}
|
|
|
|
{{#if currentUser}}
|
|
{{> comment_form}}
|
|
{{/if}}
|
|
</div>
|
|
</template>
|