{% extends "base.html" %} {% block title %}{{ book }} {{ chapter }}:{{ verse_num }} - KJV Bible{% endblock %} {% block description %}{{ verse_text[:155] if verse_text else 'Study the Authorized King James Version Bible' }}{% endblock %} {% block og_type %}article{% endblock %} {% block og_title %}{{ book }} {{ chapter }}:{{ verse_num }} - KJV Bible{% endblock %} {% block og_description %}{{ verse_text[:150] if verse_text else '' }}...{% endblock %} {% block structured_data %} {% endblock %} {% block head %} {% endblock %} {% block content %}

{{ book }} {{ chapter }}:{{ verse_num }}

Authorized King James Version

{{ verse_text | red_letter(book, chapter, verse_num) | link_names | safe }}

{% if interlinear_words %}
Word-by-Word Analysis
{% for word in interlinear_words %}
#{{ word.position }}
{{ word.original }}
{{ word.transliteration }}
{% if word.strongs %} {% set lang = word.strongs[0]|lower %} {% set num = word.strongs[1:] %} {% if lang == 'g' %} {{ word.strongs }} {% elif lang == 'h' %} {{ word.strongs }} {% else %} {{ word.strongs }} {% endif %} {% endif %}
{{ word.english }}
{{ word.parsing }}
{{ word.definition }}
{% endfor %}
{% endif %}
{% if cross_references %}

Cross References

Related verses that illuminate this passage (hover to preview):

{% endif %} {% if commentary %} {% if commentary.analysis %}

Analysis

{{ commentary.analysis|format_lists|safe }}

{% endif %} {% if commentary.historical %}

Historical Context

{{ commentary.historical|format_lists|safe }}

{% endif %} {% if commentary.theological %}

Theological Significance

{{ commentary.theological|format_lists|safe }}

{% endif %} {% if commentary.questions %}

Questions for Reflection

{% endif %} {% endif %} {% if related_content and (related_content.topics or related_content.people or related_content.resources) %}

Related Resources

Explore related topics, people, and study resources to deepen your understanding of this passage.

{% if related_content.topics %}

Topics

{% endif %} {% if related_content.people %}

People

{% endif %} {% if related_content.resources %}

Study Resources

{% endif %}
{% endif %} {% endblock %}