{{ book }}

Authorized King James Version (KJV)

{% if book_intro and book_intro.author %}Author: {{ book_intro.author }}{% endif %} {% if book_intro and book_intro.date_written %} · Written: {{ book_intro.date_written }}{% endif %} {% if book_intro and book_intro.category %} · Category: {{ book_intro.category }}{% endif %}

{% if book_intro %} {% if book_intro.introduction %}

Introduction

{{ book_intro.introduction|md|safe }}
{% endif %} {% if book_intro.outline %}

Book Outline

{% endif %} {% if book_intro.key_themes %}

Key Themes

{% endif %} {% if book_intro.key_verses %}

Key Verses

{% for verse in book_intro.key_verses %}

{{ verse.text|mdi|safe }}

{% endfor %}
{% endif %} {% if book_intro.historical_context %}

Historical Context

{{ book_intro.historical_context|md|safe }}
{% endif %} {% if book_intro.literary_style %}

Literary Style

{{ book_intro.literary_style|md|safe }}
{% endif %} {% if book_intro.theological_significance %}

Theological Significance

{{ book_intro.theological_significance|md|safe }}
{% endif %} {% if book_intro.christ_in_book %}

Christ in {{ book }}

{{ book_intro.christ_in_book|md|safe }}
{% endif %} {% if book_intro.relationship_to_new_testament %}

Relationship to the New Testament

{{ book_intro.relationship_to_new_testament|md|safe }}
{% endif %} {% if book_intro.practical_application %}

Practical Application

{{ book_intro.practical_application|md|safe }}
{% endif %}
{% endif %} {% for chapter in chapters %}

Chapter {{ chapter.chapter }}

{% for verse in chapter.verses %} {% set has_stanza_break = chapter.is_poetry and verse.verse in chapter.stanza_breaks %} {% set has_section_heading = chapter.section_headings and verse.verse in chapter.section_headings %} {% if has_stanza_break and has_section_heading %}

{{ chapter.section_headings[verse.verse] }}

{% elif has_section_heading %}

{{ chapter.section_headings[verse.verse] }}

{% endif %}
{{ verse.verse }} {{ verse.text }}
{% if has_stanza_break and has_section_heading %}
{% endif %} {% endfor %}
{% endfor %}