Vulcan/client/templates/selected_comment.html

29 lines
683 B
HTML

<template name="selected_comment">
{{#if show}}
<div class="post grid">
{{#with post}}
{{> post}}
{{#if body}}
<div class="post-message">{{body}}</div>
{{/if}}
{{/with}}
{{#with comment}}
<ul class="selected-comment">
{{> comment}}
</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>
{{/if}}
</template>