Vulcan/client/views/comments/comment_page.html
2013-10-26 10:47:13 +09:00

17 lines
290 B
HTML

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