{% extends "base.html" %} {% block title %}Biblical Family Tree - KJV Study{% endblock %} {% block description %}Explore biblical genealogies from Adam to Jesus Christ.{% endblock %} {% block head %} {% endblock %} {% block content %}
From Adam to Jesus Christ
The Bible contains detailed genealogies that trace God's plan through specific family lines, culminating in the birth of Jesus Christ. This record spans from the creation of Adam through countless generations to the birth of our Lord.
View the Messianic Lineage — A visual genealogy showing the direct paternal line from Adam to Jesus Christ.
{% for person_id in generations[gen_num][:20] %} {{ family_tree_data[person_id].name }}{% if not loop.last %}, {% endif %} {% endfor %}{% if generations[gen_num]|length > 20 %}, and {{ generations[gen_num]|length - 20 }} others{% endif %}.
{% for verse in person.verses[:2] %} {% set ref_parts = verse.reference.split(' ') %} {% if ref_parts|length >= 2 %} {% set chapter_verse = ref_parts[-1] %} {% if ':' in chapter_verse %} {% set chapter = chapter_verse.split(':')[0] %} {% set verse_part = chapter_verse.split(':')[1] %} {% if '-' in verse_part %} {% set verse_num = verse_part.split('-')[0] %} {% else %} {% set verse_num = verse_part %} {% endif %} {% set book = ' '.join(ref_parts[:-1]) %} {{ verse.reference }}{% if not loop.last %}; {% endif %} {% endif %} {% endif %} {% endfor %}
{% endif %}Family tree data could not be loaded.