Vulcan/client/templates/post.html
2012-09-04 18:57:07 +09:00

31 lines
711 B
HTML

<template name="post">
<div class="single-post grid">
{{#with post}}
{{> item}}
{{#if body}}
<div class="post-message">{{body}}</div>
{{/if}}
{{/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 Comment" />
</div>
</form>
</div>
{{/if}}
{{#if has_comments}}
<ul>
{{#each child_comments}}
{{> comment}}
{{/each}}
</ul>
{{else}}
<p>No comments.</p>
{{/if}}
</div>
</template>