{% extends "base.html" %} {% block title %}Biblical Timeline - Major Bible Events - KJV Study{% endblock %} {% block description %}Explore the chronological timeline of major biblical events from Creation to the early Church.{% endblock %} {% block head %} {% endblock %} {% block content %}

Biblical Timeline

Major events from Creation to the early Church

Table of Contents

{% for period_name, events in timeline_events.items() %}
{{ period_name }}
{% for event in events %}
{{ event.title }} {% if event.date %}({{ event.date }}){% endif %}
{% endfor %}
{% endfor %}

This timeline presents key events of biblical history with calculated dates and relevant scripture references.

{% if chronology_note %}

{{ chronology_note | link_verses | safe }}

{% endif %} {% if chronology_comparison %}
Compare Biblical Chronologies
{% for row in chronology_comparison %} {% endfor %}
Event Masoretic (Successor Method) Ussher (1650) Scofield (1909)
{{ row.event }} {{ row.masoretic }} {{ row.ussher }} {{ row.scofield }}
{% endif %}
{% for period_name, events in timeline_events.items() %}

{{ period_name }}

{% for event in events %}

{{ event.title }} ({{ event.date }}{% if event.alt_dates %} • {{ event.alt_dates }}{% endif %})

{{ event.description | link_verses | safe }}

{% if event.verses %} {% endif %} {% endfor %}
{% endfor %} {% endblock %}