Vulcan/client/templates/comment_page.html

27 lines
653 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="comment_page">
2012-09-08 12:11:26 +09:00
<div class="post grid comment-page">
2012-09-05 11:55:06 +09:00
{{#if postLoaded}}
{{#with post}}
2012-09-06 10:18:26 +09:00
{{> post_item}}
2012-09-05 11:55:06 +09:00
{{/with}}
{{/if}}
{{#with comment}}
<ul class="selected-comment">
{{> comment_item}}
</ul>
2012-09-05 11:55:06 +09:00
{{/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>