mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
21 lines
No EOL
491 B
HTML
21 lines
No EOL
491 B
HTML
<template name="post_page">
|
|
{{#with post}}
|
|
{{#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}}
|
|
</div>
|
|
{{#if body}}
|
|
{{> post_body}}
|
|
{{/if}}
|
|
{{> comment_submit}}
|
|
{{> comment_list}}
|
|
</div>
|
|
{{/with}}
|
|
</template> |