mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
33 lines
No EOL
846 B
HTML
33 lines
No EOL
846 B
HTML
<template name="post_page">
|
|
{{#if ready}}
|
|
{{#if post}}
|
|
{{#with post}}
|
|
{{#if canView}}
|
|
{{#if isPending}}
|
|
<div class="grid">
|
|
<div class="error pending-message module">
|
|
{{_ "thanks_your_post_is_awaiting_approval"}}
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
<div class="single-post grid">
|
|
<div class="posts posts-list">
|
|
{{> post_item post=this}}
|
|
</div>
|
|
{{#if body}}
|
|
{{> post_body}}
|
|
{{/if}}
|
|
{{> comment_submit}}
|
|
{{> comment_list}}
|
|
</div>
|
|
{{else}}
|
|
{{> no_rights}}
|
|
{{/if}}
|
|
{{/with}}
|
|
{{else}}
|
|
{{> not_found}}
|
|
{{/if}}
|
|
{{else}}
|
|
<div class="posts-loading">{{> loading}}</div>
|
|
{{/if}}
|
|
</template> |