mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
28 lines
765 B
HTML
28 lines
765 B
HTML
<template name="posts_digest">
|
|
<div class="grid">
|
|
<div class="grid-block">
|
|
{{i18n "The top 5 posts of each day."}} |
|
|
{{#if showPreviousDate}}
|
|
<a href="{{previousDateURL}}" class="prev-link">{{i18n "Previous Day"}}</a> |
|
|
{{/if}}
|
|
{{currentDate}} |
|
|
{{#if showNextDate}}
|
|
<a href="{{nextDateURL}}" class="next-link">{{i18n "Next Day"}}</a>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
|
|
{{> UI.dynamic template=postsListIncoming data=incoming}}
|
|
|
|
{{#if hasPosts}}
|
|
<div class="posts grid list">
|
|
{{#each posts}}
|
|
{{> UI.dynamic template=post_item}}
|
|
{{/each}}
|
|
</div>
|
|
{{else}}
|
|
<div class="grid-small grid-block dialog">
|
|
<p>{{i18n "Sorry, no posts for"}} {{currentDate}}.</p>
|
|
</div>
|
|
{{/if}}
|
|
</template>
|