mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
23 lines
725 B
HTML
23 lines
725 B
HTML
<template name="postsDaily">
|
|
{{#if postsLoaded}}
|
|
<div class="grid">
|
|
{{#each days}}
|
|
<h2 class="posts-day-heading">{{formatDate date "dddd, MMMM Do YYYY"}}</h2>
|
|
<div class="posts-wrapper posts-day posts list grid-module">
|
|
{{#if posts}}
|
|
{{#each posts}}
|
|
{{> UI.dynamic template=post_item}}
|
|
{{/each}}
|
|
{{else}}
|
|
<p class="empty-day-notice">Sorry, no posts for that day.</p>
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
<a class="more-button grid-module" href="{{loadMoreUrl}}"><span>{{_ "load_more"}}</span></a>
|
|
</div>
|
|
{{else}}
|
|
<div class="grid loading-module">
|
|
{{>spinner}}
|
|
</div>
|
|
{{/if}}
|
|
</template>
|