Vulcan/client/views/posts/post_page.html
2012-10-04 11:17:57 +10:00

11 lines
220 B
HTML

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