mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
13 lines
329 B
HTML
13 lines
329 B
HTML
<template name="posts_daily">
|
|
<div class="posts-daily">
|
|
{{#each days}}
|
|
{{> before_day}}
|
|
<div class="posts-day">
|
|
{{> day_heading date=date}}
|
|
{{> posts_list_controller context}}
|
|
</div>
|
|
{{> after_day}}
|
|
{{/each}}
|
|
{{> load_more_days handler=loadMoreHandler}}
|
|
</div>
|
|
</template>
|