brewlog/templates/partials/timeline_chunk.html
Jon Seager 267ef2bf17
feat(timeline): remove sidebar nav, include sticky headers on scroll
- 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
2026-02-02 21:18:20 +00:00

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>