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