Vulcan/client/templates/selected_post.html

32 lines
693 B
HTML
Raw Normal View History

2012-08-22 23:40:09 -04:00
<template name="selected_post">
{{#if show}}
2012-08-23 00:15:48 -04:00
<div class="selected-post grid">
2012-08-23 00:35:31 -04:00
{{#with post}}
2012-08-22 23:40:09 -04:00
{{> post}}
{{#if body}}
<div class="post-message">{{body}}</div>
{{/if}}
2012-08-23 00:35:31 -04:00
{{/with}}
2012-08-23 09:49:41 -04:00
{{#if show_comment_form}}
2012-08-22 23:40:09 -04:00
<div class="comment-new">
<div class="comment-field">
<textarea id="comment" rows="3" autofocus="autofocus"></textarea>
</div>
<div class="comment-submit">
<input type="submit" value="Add Comment" />
</div>
</div>
2012-08-23 09:49:41 -04:00
{{/if}}
2012-08-23 00:35:31 -04:00
{{#if has_comments}}
<ul>
2012-08-23 00:51:31 -04:00
{{#each child_comments}}
2012-08-23 00:35:31 -04:00
{{> comment}}
{{/each}}
</ul>
{{else}}
<p>No comments.</p>
{{/if}}
2012-08-22 23:40:09 -04:00
</div>
{{/if}}
</template>