Vulcan/client/views/posts/post_page.html

12 lines
219 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}}
2012-09-08 11:54:08 +09:00
{{> post_item}}
2012-08-23 00:35:31 -04:00
{{/with}}
2012-10-05 13:59:40 +09:00
{{#if canComment}}
{{> comment_form}}
{{/if}}
{{> comment_list}}
2012-08-22 23:40:09 -04:00
</div>
</template>