mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
Move chapter commentary after Bible text
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 <noreply@anthropic.com>
This commit is contained in:
@@ -150,13 +150,6 @@ hr::before {
|
||||
<h1>{{ book }} {{ chapter }}</h1>
|
||||
<p class="subtitle"><a href="/books">Authorized King James Version</a></p>
|
||||
|
||||
{% if chapter_overview %}
|
||||
<section>
|
||||
{{ chapter_overview|safe }}
|
||||
</section>
|
||||
<hr/>
|
||||
{% endif %}
|
||||
|
||||
<section>
|
||||
{% 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 %}
|
||||
</section>
|
||||
|
||||
{% if chapter_overview %}
|
||||
<hr/>
|
||||
<section>
|
||||
{{ chapter_overview|safe }}
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
<nav class="chapter-nav">
|
||||
<div class="chapter-nav-controls">
|
||||
{% if chapter > 1 %}
|
||||
|
||||
Reference in New Issue
Block a user