2012-09-06 10:18:26 +09:00
|
|
|
<template name="post_page">
|
2015-05-09 13:26:31 +09:00
|
|
|
{{#if isPending}}
|
|
|
|
<div class="grid">
|
|
|
|
<div class="error pending-message module">
|
|
|
|
{{_ "thanks_your_post_is_awaiting_approval"}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2014-06-27 19:42:33 +09:00
|
|
|
<div class="single-post grid">
|
2015-01-19 11:40:27 +09:00
|
|
|
<div class="posts posts-list">
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> post_item}}
|
2014-07-07 09:36:38 +09:00
|
|
|
</div>
|
2014-07-05 16:29:10 +09:00
|
|
|
{{#if body}}
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> post_body}}
|
2014-07-05 16:29:10 +09:00
|
|
|
{{/if}}
|
2015-04-28 11:32:53 +09:00
|
|
|
{{> comment_submit}}
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> comment_list}}
|
2014-06-27 19:42:33 +09:00
|
|
|
</div>
|
2015-05-09 13:26:31 +09:00
|
|
|
</template>
|