From 0fd8f8bfa30260be55a2cca5f251ef50b41e39f2 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 25 Nov 2025 18:03:46 -0500 Subject: [PATCH] Fix template name for fruits of the spirit page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct template reference from fruits_of_the_spirit.html to fruits_of_spirit.html to match actual filename. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/routes/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kjvstudy_org/routes/resources.py b/kjvstudy_org/routes/resources.py index 3795f25..5d3c2ed 100644 --- a/kjvstudy_org/routes/resources.py +++ b/kjvstudy_org/routes/resources.py @@ -459,7 +459,7 @@ def fruits_of_the_spirit_page(request: Request): """Fruits of the Spirit page.""" return templates.TemplateResponse( request, - "fruits_of_the_spirit.html", + "fruits_of_spirit.html", { "books": get_books(), "fruits_data": FRUITS_DATA,