{% 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 | format_lists | red_letter(book, chapter, verse_num) | link_names | safe }}

{% if interlinear_words %}
{% for word in interlinear_words %}
{{ word.original }} {{ word.english }} {% if word.strongs %} {{ word.strongs }} {% endif %}
{{ word.original }} {{ word.english }}
{% if word.transliteration %}
Pronunciation: {{ word.transliteration }}
{% endif %}
Strong's: {% if word.strongs %} {{ word.strongs }} {% else %} — {% endif %}
{% if word.parsing %}
Grammar: {{ word.parsing }}
{% endif %}
Word #: {{ word.position }} of {{ interlinear_words|length }}
{% if word.definition %}
{{ word.definition }}
{% endif %}
{% endfor %}
{% endif %}
{% if cross_references %}
{% endif %} {% if commentary %}
{% if commentary.analysis %}

Analysis

{{ commentary.analysis|split_paragraphs|safe }}
{% endif %} {% if commentary.historical %}

Historical Context

{{ commentary.historical|split_paragraphs|safe }}
{% endif %} {% if commentary.theological %}

Theological Significance

{{ commentary.theological|split_paragraphs|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 or related_content.stories) %}

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 %} {% if related_content.stories %}

Bible Stories

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