- Simplify timeline layout to single-column without sidebar - Update tests to explicitly pass page_size for pagination testing - Include sticky headers and a neater alternating, side-by-side timeline design
9 lines
330 B
HTML
9 lines
330 B
HTML
<div
|
|
data-timeline-chunk
|
|
data-next-url="{% if events.has_next() %}{{ navigator.fragment_page_href(events.next_page().unwrap()) }}{% else %}{% endif %}"
|
|
data-has-more="{{ events.has_next() }}"
|
|
>
|
|
<div data-chunk-months>
|
|
{% for month in months %} {% include "partials/timeline_month.html" %} {% endfor %}
|
|
</div>
|
|
</div>
|