mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00

* {{currentUser.isAdmin}} instead of custom helpers. * drop currentUserIsAdmin session variable. relies on fix to meteor's handlebars evaluator in 0.4.2.
11 lines
220 B
HTML
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>
|