mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
11 lines
220 B
HTML
11 lines
220 B
HTML
<template name="post_page">
|
|
<div class="single-post grid">
|
|
{{#with post}}
|
|
{{> post_item}}
|
|
{{/with}}
|
|
{{#if currentUser}}
|
|
{{> comment_form}}
|
|
{{/if}}
|
|
{{> comment_list}}
|
|
</div>
|
|
</template>
|