mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
17 lines
331 B
HTML
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>
|