mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
12 lines
No EOL
267 B
HTML
12 lines
No EOL
267 B
HTML
<template name="posts_list">
|
|
<div class="posts grid list">
|
|
{{#each posts}}
|
|
{{> post_item}}
|
|
{{/each}}
|
|
</div>
|
|
{{#if hasMorePosts}}
|
|
<div class="grid more-button">
|
|
<a class="more-link" href="{{loadMoreUrl}}">Load more</a>
|
|
</div>
|
|
{{/if}}
|
|
</template> |