Vulcan/client/templates/post_page.html
Matt DeBergalis e07daec6f3 Use currentUser builtin to simplify templates.
* {{currentUser.isAdmin}} instead of custom helpers.
* drop currentUserIsAdmin session variable.

relies on fix to meteor's handlebars evaluator in 0.4.2.
2012-09-27 23:33:08 -07: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>