Vulcan/client/views/posts/post_page.html
2012-10-05 13:59:40 +09:00

11 lines
219 B
HTML

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