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

25 lines
592 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="post_page">
{{#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}}
</div>
{{#if body}}
{{> post_body}}
{{/if}}
{{> comment_submit}}
{{> comment_list}}
</div>
{{else}}
{{> no_rights}}
2014-07-05 16:29:10 +09:00
{{/if}}
{{/with}}
</template>