Vulcan/client/templates/post_page.html

32 lines
726 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="post_page">
<div class="single-post grid">
2012-08-23 00:35:31 -04:00
{{#with post}}
{{> post_item}}
2012-08-22 23:40:09 -04:00
{{#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">
2012-08-31 19:10:44 +09:00
<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" />
2012-08-31 19:10:44 +09:00
</div>
</form>
2012-08-22 23:40:09 -04:00
</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-09-06 10:18:26 +09:00
{{> comment_item}}
2012-08-23 00:35:31 -04:00
{{/each}}
</ul>
{{else}}
<p>No comments.</p>
{{/if}}
2012-08-22 23:40:09 -04:00
</div>
</template>