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