Vulcan/client/views/posts/post_page.html
2013-10-06 08:47:15 +09:00

11 lines
212 B
HTML

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