Vulcan/packages/telescope-posts/lib/client/templates/post_page.html

33 lines
836 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="post_page">
2015-09-17 14:51:14 +09:00
{{#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>
2015-09-17 14:51:14 +09:00
</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>
{{else}}
{{> no_rights}}
2015-09-17 14:51:14 +09:00
{{/if}}
{{/with}}
{{else}}
{{> not_found}}
{{/if}}
2015-09-17 14:51:14 +09:00
{{else}}
<div class="posts-loading">{{> loading}}</div>
{{/if}}
</template>