Vulcan/client/views/posts/post_page.html
2012-10-05 14:08:46 +09:00

13 lines
246 B
HTML

<template name="post_page">
{{#if canView}}
<div class="single-post grid">
{{#with post}}
{{> post_item}}
{{/with}}
{{#if canComment}}
{{> comment_form}}
{{/if}}
{{> comment_list}}
</div>
{{/if}}
</template>