diff --git a/kjvstudy_org/templates/bible_pdf.html b/kjvstudy_org/templates/bible_pdf.html deleted file mode 100644 index c8acfe6..0000000 --- a/kjvstudy_org/templates/bible_pdf.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - King James Version Bible (Complete) - - - - -
-

HOLY BIBLE

-

Authorized King James Version

-

- 1769 Cambridge Edition
- Complete with Cross-References and Word Studies
- {{ total_verses|number_format }} verses across 66 books -

-
- - -
-

Table of Contents

- -
-

Old Testament (39 books)

-
- {% for book in old_testament %} -
{{ book }}
- {% endfor %} -
-
- -
-

New Testament (27 books)

-
- {% for book in new_testament %} -
{{ book }}
- {% endfor %} -
-
-
- - - {% for book_data in books %} -
-

{{ book_data.name }}

-

{{ book_data.chapter_count }} {% if book_data.chapter_count == 1 %}chapter{% else %}chapters{% endif %}

- - {% for chapter_num, verses in book_data.chapters.items() %} -
-

Chapter {{ chapter_num }}

-
- {% for verse in verses %} - {% set commentary = book_data.commentaries.get(chapter_num, {}).get(verse.verse) %} - - {{ verse.verse }}{{ verse.text }}{% if commentary %}{% if commentary.cross_reference_groups %}*{% for group in commentary.cross_reference_groups %}{{ group.description }}: {% for ref in group.refs %}{{ ref }}{% if not loop.last %}; {% endif %}{% endfor %}.{% endfor %}{% endif %}{% if commentary.word_studies %}{% for study in commentary.word_studies %}{{ study.word }}: {{ study.term }} ({{ study.translit }}) — {{ study.meaning }}.{% endfor %}{% endif %}{% endif %} - - {% endfor %} -
-
- {% endfor %} -
- {% endfor %} - - - - -