2012-12-13 17:06:13 +11:00
|
|
|
<template name="posts_list">
|
2014-08-27 10:23:56 +09:00
|
|
|
<div class="posts-wrapper grid grid-module">
|
2015-03-22 09:42:58 +09:00
|
|
|
{{> Template.dynamic template=postsListIncoming data=incoming}}
|
2015-02-12 23:44:59 -06:00
|
|
|
<div class="posts list {{postsLayout}}" aria-live="polite">
|
2015-01-08 15:38:07 +09:00
|
|
|
{{#each postsCursor}}
|
2015-03-22 09:42:58 +09:00
|
|
|
{{> Template.dynamic template=before_post_item}}
|
|
|
|
{{> Template.dynamic template=post_item}}
|
|
|
|
{{> Template.dynamic template=after_post_item}}
|
2014-09-15 12:42:17 +10:00
|
|
|
{{/each}}
|
2014-07-05 12:36:18 +09:00
|
|
|
</div>
|
2015-03-22 09:42:58 +09:00
|
|
|
{{> Template.dynamic template=postsLoadMore}}
|
2014-07-04 11:32:04 +09:00
|
|
|
</div>
|
2013-04-06 14:50:23 +09:00
|
|
|
</template>
|