mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
15 lines
263 B
HTML
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>
|