mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
23 lines
No EOL
633 B
HTML
23 lines
No EOL
633 B
HTML
<template name="posts_digest">
|
|
<div class="grid">
|
|
<div class="grid-block">
|
|
The top 5 posts of each day. |
|
|
{{#if showPreviousDate}}
|
|
<a href="{{previousDateURL}}" class="prev-link">Previous Day</a> |
|
|
{{/if}}
|
|
{{currentDate}} |
|
|
{{#if showNextDate}}
|
|
<a href="{{nextDateURL}}" class="next-link">Next Day</a>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
<div class="posts grid list">
|
|
{{#if hasPosts}}
|
|
{{#each posts}}
|
|
{{> post_item}}
|
|
{{/each}}
|
|
{{else}}
|
|
<p class="empty-notice">Sorry, nothing for today.</p>
|
|
{{/if}}
|
|
</div>
|
|
</template> |