Vulcan/client/views/posts/posts_list.html

13 lines
421 B
HTML
Raw Normal View History

<template name="posts_list">
{{> UI.dynamic template=postsListIncoming data=incoming}}
2014-08-27 10:23:56 +09:00
<div class="posts-wrapper grid grid-module">
<div class="posts list">
{{#each posts}}
{{> 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>
2014-07-04 11:32:04 +09:00
</div>
2014-08-28 10:16:17 +09:00
{{> UI.dynamic template=postsLoadMore}}
2013-04-06 14:50:23 +09:00
</template>