From ec6cfd068c8aa0d37706adcf8a3c05753dc705a1 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 28 Nov 2025 19:38:25 -0500 Subject: [PATCH] Remove Bible PDF template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the bible_pdf.html template as it's no longer needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/bible_pdf.html | 251 -------------------------- 1 file changed, 251 deletions(-) delete mode 100644 kjvstudy_org/templates/bible_pdf.html 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 %} - - - - -