From e9e2e5063fc1dd6986e8ecd53705e3c8dcab2b90 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 20 Nov 2025 17:35:11 -0500 Subject: [PATCH] Fix family tree page right margin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add max-width: 55% to content divs to match Tufte CSS standards and prevent content from extending to the right edge. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/family_tree.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kjvstudy_org/templates/family_tree.html b/kjvstudy_org/templates/family_tree.html index 0d6a88f..ee778e5 100644 --- a/kjvstudy_org/templates/family_tree.html +++ b/kjvstudy_org/templates/family_tree.html @@ -18,7 +18,7 @@

{{ generations|length }} generations from Adam

{% for gen_num in generations.keys() | sort %} -
+

Generation {{ gen_num }}

{{ generations[gen_num]|length }} individual{% if generations[gen_num]|length != 1 %}s{% endif %}: @@ -38,7 +38,7 @@ {% set notable = ["Adam", "Noah", "Abraham", "Isaac", "Jacob", "Joseph", "Moses", "David", "Solomon", "Jesus"] %} {% for person_id, person in family_tree_data.items() %} {% if person.name in notable %} -

+

{{ person.name }}{% if person.generation %} (Generation {{ person.generation }}){% endif %}

{% if person.birth_year != "Unknown" or person.death_year != "Unknown" or person.age_at_death != "Unknown" %}