Vulcan/client/views/posts/post_page.html

14 lines
259 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}}
2013-10-21 17:47:30 +08:00
{{#with post}}
<div class="single-post grid">
{{> post_item}}
{{#if canComment}}
{{> comment_form}}
{{/if}}
{{> comment_list}}
</div>
{{/with}}
2012-10-05 14:08:46 +09:00
{{/if}}
2012-08-22 23:40:09 -04:00
</template>