Vulcan/client/views/posts/post_list/posts_list.html

13 lines
447 B
HTML
Raw Normal View History

<template name="posts_list">
2014-08-27 10:23:56 +09:00
<div class="posts-wrapper grid grid-module">
2015-01-10 11:38:19 +09:00
{{> UI.dynamic template=postsListIncoming data=incoming}}
<div class="posts list {{postsLayout}}">
{{#each postsCursor}}
{{> UI.dynamic template=before_post_item}}
{{> UI.dynamic template=post_item}}
{{> UI.dynamic template=after_post_item}}
{{/each}}
2014-07-05 12:36:18 +09:00
</div>
2015-01-10 11:38:19 +09:00
{{> UI.dynamic template=postsLoadMore}}
2014-07-04 11:32:04 +09:00
</div>
2013-04-06 14:50:23 +09:00
</template>