mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
29 lines
721 B
HTML
29 lines
721 B
HTML
<template name="comment_page">
|
|
<div class="post grid">
|
|
{{#if postLoaded}}
|
|
{{#with post}}
|
|
{{> post_item}}
|
|
{{#if body}}
|
|
<div class="post-message">{{body}}</div>
|
|
{{/if}}
|
|
{{/with}}
|
|
{{/if}}
|
|
{{#with comment}}
|
|
<ul class="selected-comment">
|
|
{{> comment_item}}
|
|
</ul>
|
|
{{/with}}
|
|
{{#if show_comment_form}}
|
|
<div class="comment-new">
|
|
<form>
|
|
<div class="comment-field">
|
|
<textarea id="comment" rows="3" autofocus="autofocus"></textarea>
|
|
</div>
|
|
<div class="comment-submit">
|
|
<input type="submit" class="button" value="Add Reply" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</template>
|