Vulcan/client/views/posts/post_page.html

13 lines
327 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="post_page">
2014-06-27 19:42:33 +09:00
<div class="single-post grid">
<div class="posts posts-list">
{{> UI.dynamic template=post_item}}
</div>
2014-07-05 16:29:10 +09:00
{{#if body}}
{{> UI.dynamic template=post_body}}
{{/if}}
2014-07-05 11:42:28 +09:00
{{> UI.dynamic template=comment_form}}
{{> UI.dynamic template=comment_list}}
2014-06-27 19:42:33 +09:00
</div>
2012-08-22 23:40:09 -04:00
</template>