{% for section in timeline.sections %}
  • {{ section.title }}
  • {% for item in section.items %}
  • {{ item.time }}

    {{ item.title }}

    {% if item.body_text %}
    {{ item.body_text }}
    {% endif %} {% if item.buttons|length > 0 %}
    {% for button in item.buttons %} {% include 'avishan/panel/components/button.html' with button=button %} {% endfor %}
    {% endif %}
  • {% endfor %} {% endfor %}