From d271cc29d94ec5865df9b142b7ff22ecb8164ab1 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 22 Nov 2025 16:16:02 -0500 Subject: [PATCH] Move chapter commentary after Bible text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reorder chapter view so commentary appears after the Scripture text rather than before it, allowing readers to engage with the primary text before reading interpretive material. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/chapter.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/kjvstudy_org/templates/chapter.html b/kjvstudy_org/templates/chapter.html index 3021817..68329c3 100644 --- a/kjvstudy_org/templates/chapter.html +++ b/kjvstudy_org/templates/chapter.html @@ -150,13 +150,6 @@ hr::before {

{{ book }} {{ chapter }}

Authorized King James Version

-{% if chapter_overview %} -
- {{ chapter_overview|safe }} -
-
-{% endif %} -
{% for verse in verses %} {% set commentary = commentaries[verse.verse] if commentaries and verse.verse in commentaries else none %} @@ -182,6 +175,13 @@ hr::before { {% endfor %}
+{% if chapter_overview %} +
+
+ {{ chapter_overview|safe }} +
+{% endif %} +