mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 11:01:38 -05:00
19 lines
No EOL
503 B
HTML
19 lines
No EOL
503 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" data-increment="-1">Previous Day</a> |
|
|
{{/if}}
|
|
{{currentDate}} |
|
|
{{#if showNextDate}}
|
|
<a href="{{nextDateURL}}" class="next-link" data-increment="1">Next Day</a>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
<div class="posts grid list">
|
|
{{#each posts}}
|
|
{{> post_item}}
|
|
{{/each}}
|
|
</div>
|
|
</template> |