{% extends "base.html" %} {% block title %}Brewlog · Timeline{% endblock %} {% block content %}
{% if months.is_empty() %}

No events yet.

{% else %}
{# Single central timeline line for all months #} {% for month in months %} {% include "partials/timeline_month.html" %} {% endfor %}
{% endif %}

No more events.

{% endblock %}