Vulcan/packages/nova-posts/lib/client/templates/post_page.html
2016-02-17 14:27:27 +09:00

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>