mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
12 lines
No EOL
332 B
HTML
12 lines
No EOL
332 B
HTML
<template name="posts_list">
|
|
<div class="posts-wrapper grid">
|
|
<div class="posts list">
|
|
{{#each posts}}
|
|
{{> UI.dynamic template=post_item}}
|
|
{{/each}}
|
|
</div>
|
|
{{#if hasMorePosts}}
|
|
<a class="more-button module" href="{{loadMoreUrl}}"><span>{{i18n "Load more"}}</span></a>
|
|
{{/if}}
|
|
</div>
|
|
</template> |