{% extends "base.html" %} {% block title %}{{ book }} {{ chapter }} - KJV Bible{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ book }} {{ chapter }}

Authorized King James Version

{% for verse in verses %} {% set commentary = commentaries[verse.verse] if commentaries and verse.verse in commentaries else none %}

{{ verse.verse }} {{ verse.text | link_names | safe }} {% if commentary %} {% if commentary.word_studies %} {% for study in commentary.word_studies %} {{ study.word }}: {{ study.term }} ({{ study.translit }}). {{ study.note | safe }} {% endfor %} {% endif %} {% if commentary.cross_references %} {% for ref in commentary.cross_references %} {{ ref.text }}{% if ref.context %} — {{ ref.context }}{% endif %} {% endfor %} {% endif %} {% endif %}

{% endfor %}
{% if chapter_overview %}
{{ chapter_overview|safe }}
{% endif %} {% endblock %}