Vulcan/client/templates/comment_page.html

26 lines
653 B
HTML

<template name="comment_page">
<div class="post grid comment-page">
{{#if postLoaded}}
{{#with post}}
{{> post_item}}
{{/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>