2014-08-27 09:24:37 +09:00
|
|
|
<template name="postsDaily">
|
2014-08-28 07:55:13 +09:00
|
|
|
{{#if postsLoaded}}
|
|
|
|
<div class="grid">
|
|
|
|
{{#each days}}
|
2015-01-03 10:14:39 +09:00
|
|
|
{{> UI.dynamic template=before_day}}
|
2014-08-28 07:55:13 +09:00
|
|
|
<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}}
|
2015-01-03 10:14:39 +09:00
|
|
|
{{> UI.dynamic template=before_post_item}}
|
2014-08-28 07:55:13 +09:00
|
|
|
{{> UI.dynamic template=post_item}}
|
2015-01-03 10:14:39 +09:00
|
|
|
{{> UI.dynamic template=after_post_item}}
|
2014-08-28 07:55:13 +09:00
|
|
|
{{/each}}
|
|
|
|
{{else}}
|
|
|
|
<p class="empty-day-notice">Sorry, no posts for that day.</p>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2015-01-03 10:14:39 +09:00
|
|
|
{{> UI.dynamic template=after_day}}
|
2014-08-28 07:55:13 +09:00
|
|
|
{{/each}}
|
2014-11-25 17:16:00 +09:00
|
|
|
<a class="more-button grid-module" href="{{loadMoreUrl}}"><span>{{_ "load_more"}}</span></a>
|
2014-08-28 07:55:13 +09:00
|
|
|
</div>
|
|
|
|
{{else}}
|
2014-08-28 10:16:17 +09:00
|
|
|
<div class="grid loading-module">
|
2014-08-28 07:55:13 +09:00
|
|
|
{{>spinner}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2014-08-27 09:24:37 +09:00
|
|
|
</template>
|