Vulcan/client/views/posts/post_page.html

12 lines
212 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="post_page">
2012-10-05 14:08:46 +09:00
{{#if canView}}
<div class="single-post grid">
{{> post_item}}
2012-10-05 13:59:40 +09:00
{{#if canComment}}
{{> comment_form}}
{{/if}}
{{> comment_list}}
2012-08-22 23:40:09 -04:00
</div>
2012-10-05 14:08:46 +09:00
{{/if}}
2012-08-22 23:40:09 -04:00
</template>