Vulcan/client/templates/comment_page.html
2012-09-27 23:33:10 -07:00

21 lines
380 B
HTML

<template name="comment_page">
<div class="post grid comment-page">
{{#if post}}
{{#with post}}
{{> post_item}}
{{/with}}
{{/if}}
{{#if comment}}
{{#with comment}}
<ul class="selected-comment">
{{> comment_item}}
</ul>
{{/with}}
{{/if}}
{{#if currentUser}}
{{> comment_form}}
{{/if}}
</div>
</template>