Vulcan/client/views/posts/post_page.html
2013-10-21 17:47:30 +08:00

13 lines
259 B
HTML

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