{% extends "base.html" %} {% block title %}Red Letter Edition - Words of Christ - KJV Study{% endblock %} {% block description %}Explore the words of Jesus Christ in the King James Bible. {{ total_all }} verses containing Christ's direct speech, highlighted in red.{% endblock %} {% block head %} {% endblock %} {% block content %}

Red Letter Edition

The Words of Jesus Christ

{{ "{:,}".format(total_all) }}
Total Verses
{{ "{:,}".format(full_verses) }}
Full Red Letter
{{ "{:,}".format(partial_verses) }}
Partial
{{ books_with_counts | length }}
Books

Filter by Book

All {% for book_name, count in books_with_counts %} {{ book_name }}({{ count }}) {% endfor %}

{% if selected_book %}{{ selected_book }}{% else %}All Books{% endif %}

{{ "{:,}".format(total) }} verse{% if total != 1 %}s{% endif %}
{% for v in verses %}
{{ v.reference }} {% if v.is_full_verse %}Full{% else %}Partial{% endif %}

{{ v.text | red_letter(v.book, v.chapter, v.verse) | safe }}

{% endfor %}
{% if total_pages > 1 %} {% endif %}
{% endblock %}