From 96a9c152a6562453ff8511dd37f682ff7d15b2d8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 23 Nov 2025 14:11:47 -0500 Subject: [PATCH] Make word-by-word analysis collapsible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use details/summary HTML elements to allow users to expand/collapse the interlinear word analysis section on verse pages. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/verse.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kjvstudy_org/templates/verse.html b/kjvstudy_org/templates/verse.html index c1edb73..da2043e 100644 --- a/kjvstudy_org/templates/verse.html +++ b/kjvstudy_org/templates/verse.html @@ -244,8 +244,8 @@

{{ verse_text | link_names | safe }}

{% if interlinear_words %} -
-

Word-by-Word Analysis

+
+ Word-by-Word Analysis
{% for word in interlinear_words %}
@@ -271,7 +271,7 @@
{% endfor %}
-
+ {% endif %}