Vulcan/client/templates/comment_page.html

22 lines
392 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="comment_page">
2012-09-08 12:11:26 +09:00
<div class="post grid comment-page">
2012-09-05 11:55:06 +09:00
{{#if postLoaded}}
{{#with post}}
2012-09-06 10:18:26 +09:00
{{> post_item}}
2012-09-05 11:55:06 +09:00
{{/with}}
{{/if}}
{{#if comment}}
2012-09-05 11:55:06 +09:00
{{#with comment}}
<ul class="selected-comment">
{{> comment_item}}
</ul>
2012-09-05 11:55:06 +09:00
{{/with}}
{{/if}}
{{#if currentUser}}
{{> comment_form}}
{{/if}}
2012-09-05 11:55:06 +09:00
</div>
</template>