Vulcan/client/views/comments/comment_page.html
2012-10-05 22:09:13 +09:00

15 lines
263 B
HTML

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