Vulcan/client/templates/comment_page.html
2012-09-21 18:43:49 +09:00

15 lines
320 B
HTML

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