Vulcan/client/views/comments/comment_page.html
2014-07-05 11:42:28 +09:00

17 lines
331 B
HTML

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