posts_list.html 302 B

1234567891011121314
  1. <template name="postsList">
  2. <div class="posts page">
  3. {{#each posts}}
  4. {{> postItem}}
  5. {{/each}}
  6. {{#if nextPath}}
  7. <a class="load-more" href="{{nextPath}}">Load more</a>
  8. {{else}}
  9. {{#unless ready}}
  10. {{> spinner}}
  11. {{/unless}}
  12. {{/if}}
  13. </div>
  14. </template>