Implement caching for sitemap.xml to avoid regenerating the massive
sitemap on every request. The sitemap is now:
- Generated once and cached with the current date
- Served from cache for all requests on the same day
- Automatically regenerated the next day
This significantly improves performance as the sitemap includes thousands
of URLs for all Bible verses, chapters, books, topics, and other resources.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Add new "Grief" subtopic under Suffering with 8 comforting verses
about mourning and sorrow, including:
- Psalms 34:18 - The LORD is nigh unto them of a broken heart
- Matthew 5:4 - Blessed are they that mourn
- John 11:35 - Jesus wept
- Psalms 30:5 - Weeping may endure for a night
- 2 Corinthians 1:3-4 - Father of mercies and God of all comfort
- Revelation 21:4 - God shall wipe away all tears
- 1 Thessalonians 4:13 - Sorrow not as others who have no hope
- Psalms 147:3 - He heals the broken in heart
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Remove background color from table of contents on all resource pages
for a simpler, cleaner look. The left border provides sufficient
visual distinction without needing a background fill.
Updated templates:
- tetragrammaton.html
- biblical_angels.html
- biblical_prophets.html
- biblical_covenants.html
- biblical_festivals.html
- names_of_god.html
- twelve_apostles.html
- women_of_the_bible.html
- parables.html
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Update interlinear page breadcrumbs to match site-wide styling:
- Use standard .breadcrumb class instead of .breadcrumbs
- Use CSS variables (--link-color, --text-secondary) instead of hardcoded colors
- Change separator from / to > to match other pages
- Add border-bottom and proper spacing
- Remove inline styles
- Apply consistent dark mode styling
Breadcrumbs now match the refined navigation style used throughout
the rest of the site.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
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>
Change "Masoretic (Gap-Allowing)" to "Masoretic (Successor Method)"
to accurately reflect the Masoretic chronology's successor method of
reckoning, where each patriarch's time period continues until the next
patriarch's birth.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Remove modern design elements from verse lookup and quick links sections.
Replace card-based layouts with classical border-left styling.
Simplify button styling to match traditional academic presentation.
Adjust spacing and typography for consistency with Tufte CSS principles.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Added aliases for "Sarai or Sarah" and "Sarai" -> "Sarah"
- Removed duplicate "Abraham's wife Sarah" entry (now aliased to "Sarah")
- Sarah's biography now appears for all name variations in GEDCOM
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Created caching infrastructure to avoid re-parsing GEDCOM file on every request:
- Added global caches for tree_data, generations, and name_to_person_id mapping
- Created get_family_tree_data() to return cached tree and generations
- Created get_person_name_mapping() for name lookups
- Updated search_family_tree() to use cached data
- Updated link_person_names_in_text() to use cached name mapping
- Updated /family-tree route to use cached data
This significantly improves performance for all family tree pages and searches.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Makes it easier to find people when searching by name, as the person's
profile appears before all the verses mentioning them.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Family tree search:
- Exact name matches now redirect directly to person page
- Added search_family_tree() helper function
Homepage search:
- Now includes family tree people in search results
- Shows up to 5 matching people with their info
- Results separated into "Bible Verses" and "People in Family Tree"
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Handle alternate name forms like "Noah or Noe" by adding BIOGRAPHY_ALIASES
dictionary. Updated get_biography() and has_biography() to check aliases
when exact match not found.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Family tree person page enhancements:
- Created biblical_biographies.py with detailed biographies for 12 major figures
- Added biographical summaries for Adam, Noah, Abraham, Moses, David, Jesus, and more
- Included "Biblical Significance" sections explaining theological importance
- Added chronological life events timelines with ages and linked verse references
- Integrated biography data into person pages when available
- Linked all timeline events to their biblical references
- Clean, Tufte-inspired design matching site aesthetic
This transforms family tree pages from simple genealogy records into
rich biographical resources for biblical study.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Enhancement to cross-references feature:
- Fetch actual verse text for each cross-reference
- Display verse text in elegant hover tooltips
- Support both light and dark mode styling
- Add "(hover to preview)" hint to section description
- Tooltips show reference and full verse text
- Clean, minimal design matching Tufte CSS aesthetic
This makes it much easier to explore related verses without
leaving the current page.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Add clickable links to Strong's numbers on interlinear pages:
- Parse Strong's numbers (G#### or H####) and link to Bible Hub
- Greek words link to biblehub.com/greek/{num}.htm
- Hebrew words link to biblehub.com/hebrew/{num}.htm
- Open in new tab with rel="noopener noreferrer"
- Style links with dotted underline that becomes solid on hover
- Support both light and dark mode styling
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Fix dark mode for both system preference and manual toggle:
- Support both @media (prefers-color-scheme: dark) and [data-theme="dark"]
- Fix interlinear word cards showing white in dark mode
- Fix sidenotes/marginnotes showing white boxes in dark mode
This ensures dark mode works whether users have system dark mode
enabled OR use the manual dark mode toggle button.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Add comprehensive dark mode support for:
- Sidenotes and marginnotes (fixing white box issue)
- Interlinear word cards and all text elements
- Links, headings, and borders in dark mode
- Buttons, inputs, and navigation elements
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Replace complex SVG diagram with minimal Tufte-style text layout:
- Show parents with downward arrow (↓)
- Current person in bold with spouse
- Children listed with downward arrow
- Siblings separated below with subtle border
- All names are clickable links
- Uses simple typography (bold, italic) and arrow symbols
- Much more compact and fits Tufte aesthetic
- No background color for cleaner integration
- Shows up to 8 children/siblings with "and X more" overflow
Aligns with MacFamilyTree-inspired minimal design while being
appropriate for biblical genealogy context.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Create dedicated lineage page at /family-tree/lineage
- Generate clean SVG visualization showing direct paternal line (Adam → Jesus)
- Use Kekulé numbering system to trace powers of 2 (direct ancestors)
- MacFamilyTree-inspired minimal design with:
- Vertical layout with connector lines
- Clickable person boxes linking to detail pages
- Name, dates, generation, and Kekulé number for each ancestor
- Tufte ETBembo typography
- Hover effects
- Update main family tree page with link to lineage (instead of embedding)
- Add explanation of Kekulé numbering system and biblical references
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Remove "View all resources →" link from homepage for cleaner design
- Update Quick Access link from "Timeline" to "Timeline / Chronology"
- Add inline quick reference navigation to biblical timeline page
- Shows all periods with nested event links
- Compact hierarchical structure with bullet separators
- Styled in gray box matching site aesthetic
- All anchor links functional for quick jumping
- Add generated data files to .gitignore (too large for git)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Replaced <section> elements with divs and direct elements using controlled
inline margins (1.5rem) instead of the larger default section spacing. This
creates a more compact, less vertically-stretched layout while maintaining
readability.
The page now feels tighter and more efficient without excessive whitespace.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Repositioned the "← Back to Family Tree" link to appear below the search
results instead of above them. This improves UX by keeping the search results
more prominent and accessible, especially when there are multiple matches.
New layout order:
1. Search form
2. Results (when present)
3. Back to Family Tree link
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Implemented HTML5 datalist autocomplete for the family tree search:
- Server now passes all person names sorted alphabetically to template
- Input field connected to datalist with list="person-names" attribute
- Users now see autocomplete suggestions as they type
- Native browser autocomplete disabled to prevent interference
This makes it much easier to find biblical figures in the genealogy
without needing to remember exact spellings or know who's in the tree.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Added Ussher and Scofield alternative dates to all remaining timeline events
for complete chronological comparison. Now every event shows inline alternative
dates alongside the primary Masoretic chronology.
Events updated:
- Fall of Man, Cain and Abel: Ussher/Scofield c. 3900-4004 BC
- Patriarchs (Isaac, Jacob, Joseph): Ussher/Scofield 1896-1706 BC
- Exodus period: Ussher/Scofield 1491-1571 BC (mostly converge)
- Kingdom period: Ussher/Scofield 1095-975 BC (Solomon varies slightly)
- Exile and Return: Ussher/Scofield 721-536 BC (minor variations)
- New Testament: Ussher/Scofield 4 BC - 58 AD (Christ's ministry dates differ)
All timeline events now display: "Primary Date • Alternative Dates"
providing comprehensive chronological comparison across all three frameworks.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Added 'open' attribute to <details> element so the chronology comparison
table is visible by default rather than collapsed. Users can still collapse
it if desired by clicking the summary.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Implemented comprehensive chronology comparison features:
1. Updated methodology note to include Scofield Reference Bible chronology
alongside Ussher, noting its historical significance in evangelical study
2. Added inline alternative dates for major events showing Ussher/Scofield
dates alongside primary Masoretic dates (e.g., "11,013 BC • Ussher/Scofield: 4004 BC")
3. Created collapsible chronology comparison table displaying all three frameworks
side-by-side for key events (Creation, Flood, Abraham, Exodus, etc.)
4. Made comparison table expandable with HTML5 <details> element for clean UX
Key differences highlighted:
- Creation: Masoretic 11,013 BC vs Ussher/Scofield 4004 BC
- Flood: Masoretic 4,990 BC vs Ussher/Scofield 2348 BC
- Abraham: Masoretic c. 2500 BC vs Ussher 1921 BC vs Scofield 1996 BC
- Christ's birth: Masoretic 7 BC vs Ussher/Scofield 4 BC
Provides scholarly context while maintaining Masoretic gap-allowing interpretation
as primary framework. Honors the historical influence of both Ussher's and
Scofield's chronologies in KJV study tradition.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Created link_verses Jinja2 filter that automatically detects and links verse
references in timeline event descriptions. Handles various formats:
- Simple references: Genesis 1:1, Romans 4:3
- Books with numbers: 1 Corinthians 5:7, 2 Peter 3:5-7
- Verse ranges: Matthew 27:51
References like "Hebrews 9:22" in description text now link to dedicated verse
pages for easy navigation and deeper study. Applied filter to both event
descriptions and chronology methodology note.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Updated timeline dates to use Masoretic text with gap-allowing interpretation of
Genesis 5 and 11 genealogies as primary framework:
Major date changes:
- Creation/Adam: 11,013 BC (was 4004 BC)
- The Flood: 4,990 BC (was 2348 BC)
- Patriarchs: Adjusted dates with c. 2500 BC for Abraham
- Birth of Christ: 7 BC (was c. 4 BC)
The 'begat' (yalad) interpretation allows for generational gaps except where textual
markers like 'he named him' indicate direct father-son relationships. Updated
chronology note explains both Masoretic (primary) and Ussher (alternative) approaches,
clarifying that both use the same biblical text but differ in genealogical interpretation.
Later historical dates (Exile, Return, etc.) remain anchored to archaeological evidence.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Display explanation of successive method of reckoning used for Genesis 5 & 11
genealogies. The note clarifies that 'begat' (Hebrew yalad) may indicate either
direct father-son relationships (marked by 'he named him') or ancestral lines
with potential gaps. Changed intro from 'approximate dates' to 'calculated dates'
to reflect precision of Ussher chronology.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Replace approximate dates with precise Ussher chronology based on
successive (non-concurrent) calculation of biblical genealogies:
Key date changes:
- Creation: 4004 BC (was c. 4000 BC)
- Fall of Man: 4004 BC (same year as creation)
- Great Flood: 2348 BC (1656 years after creation)
- Abraham's call: 1921 BC (calculated from Genesis 11-12)
- Isaac's birth: 1896 BC (Abraham age 100)
- Jacob's birth: 1836 BC (Isaac age 60)
- Joseph in Egypt: 1706 BC
- Moses' birth: 1571 BC
- The Exodus: 1491 BC (430 years in Egypt)
- Period of Judges: 1400-1050 BC
- King Saul: 1095 BC
- King David: 1055 BC
- King Solomon: 1015-975 BC
- Divided Kingdom: 975 BC
Historical dates (722 BC, 586 BC, 538 BC, etc.) remain unchanged as
they are confirmed by secular historical records.
The successive method adds genealogical ages sequentially without
gaps, following the traditional chronology established by Archbishop
James Ussher in the 17th century.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Remove the person-description div that displayed lengthy biblical verse
quotations on family tree person pages. This simplifies the page layout
and removes redundant content.
Removed:
- CSS styling for .person-description
- HTML div displaying person.description verses
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Fix duplication where cross-references were shown twice:
- Once from the route's cross_references variable
- Once from commentary.cross_references
Kept the more complete and styled version from the route.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Performance improvements:
1. **GZip Compression** - Compress responses >500 bytes for faster delivery
2. **Smart Caching Headers** - Tiered caching strategy:
- Static files: 1 year (immutable)
- Bible content: 1 week (rarely changes)
- Study resources: 1 day
- Homepage: 1 hour
- API endpoints: no-cache (always fresh)
Internal linking improvements:
3. **Related Content System** - Intelligent content recommendations
- Automatically links verses to related topics
- Connects books to relevant people (prophets, apostles, women)
- Suggests contextual study resources (maps, festivals, covenants)
- Improves SEO through better site structure
- Enhances user engagement and discovery
The related content system analyzes each verse's book and context to suggest:
- Topics (Salvation, Prayer, Love, Faith, Hope, Peace, Wisdom)
- Biblical people (Moses, Elijah, Isaiah, Peter, Ruth, Esther, etc.)
- Study resources (Maps, Festivals, Timeline, Parables, Covenants)
Example: John 3:16 now links to Salvation, Love, and Peace topics, plus the Apostle John
This creates a rich network of internal links across 31,102 verses, improving both
SEO and user experience.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Implement essential SEO features for better search engine visibility:
1. **robots.txt** - Guide search engine crawlers
- Allow all content except /api/ endpoints
- Reference sitemap.xml location
- Set crawl delay to be server-friendly
2. **Open Graph tags** - Improve social media sharing
- og:type, og:url, og:title, og:description
- og:site_name for brand consistency
- Customizable per page via template blocks
3. **Twitter Card tags** - Optimize Twitter previews
- Summary card format
- URL, title, and description meta tags
4. **Canonical URLs** - Prevent duplicate content issues
- Self-referencing canonical links
- Customizable via template blocks
5. **Structured Data (JSON-LD)** - Help Google understand site structure
- WebSite schema with search action
- Enables site search in Google results
- Extendable per page via structured_data block
All meta tags use template blocks for easy customization on individual pages.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Update sitemap.xml generation to include comprehensive coverage of all site content:
- Add all main section pages (books, reading-plans, topics, resources, concordance, interlinear)
- Add all special content sections (biblical-angels, prophets, names-of-god, parables,
covenants, apostles, women-of-the-bible, festivals, tetragrammaton)
- Add individual detail pages for all study guides (9 guides)
- Add all reading plan pages (8 plans)
- Add all topic pages (10 topics)
- Add detail pages for angels (4), prophets (8), names of God (10), parables (8),
covenants (5), apostles (12), women (12), festivals (7)
- Add all book commentaries
- Add all chapter commentaries
- Add all 31,102 individual verse pages
- Add all 31,031 interlinear Bible verse pages
Total URLs: 64,758 (up from ~1,400)
This comprehensive sitemap ensures all content is discoverable by search engines.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Clean up verse navigation by removing decorative emoji from Interlinear link
for consistency with Tufte CSS minimalist design.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Enable preloading of interlinear data at application startup to eliminate
first-request delays. Configurable via PRELOAD_INTERLINEAR environment variable.
- Add preload_data() function to interlinear_loader.py with logging
- Add startup event handler in server.py to trigger preload
- Enable PRELOAD_INTERLINEAR=true in fly.toml and docker-compose.yml
- Update FLY_DEPLOYMENT.md with cache warming documentation
Performance impact:
- Startup time: ~7-10 seconds (vs ~5 seconds without preload)
- First request: <100ms (vs 2-3 seconds without preload)
- Memory usage: ~400-500MB total (139MB for interlinear data)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Implement complete Hebrew/Greek interlinear Bible feature with word-by-word
translations, Strong's numbers, and lexical definitions covering 98.8% of
Scripture.
Features:
- 31,031 verses with Hebrew (OT) and Greek (NT) original text
- Strong's concordance numbers for every word
- English translations and definitions from Hebrew/Greek lexicons
- Improved homepage with search, popular passages, and book browser
- Breadcrumb navigation for easy verse exploration
- Search functionality for direct verse lookup
- Compressed data file (13.5 MB gzipped, 139 MB uncompressed)
- Lazy loading for efficient memory usage
Data source: tahmmee/interlinear_bibledata repository
Coverage: Complete Bible except 71 verses (1 Kings 22, 3 John 15)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Changed from iterating through books to using bible.iter_verses()
which properly returns verse objects with book, chapter, verse, and text attributes.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Concordance System:
- Complete word occurrence index for entire KJV Bible
- Shows all instances of any searched word with full context
- Case-insensitive exact word matching with word boundaries
- Results organized by biblical book for easy navigation
- Each occurrence links directly to the verse
Features:
- Search any word to find all occurrences (e.g., "love" appears ~300 times)
- Highlighted word in context for quick identification
- Statistics showing total occurrences and books containing the word
- Popular word suggestions (love, faith, LORD, God, Jesus, grace, etc.)
- Grouped by book with occurrence counts per book
- Full verse context provided for each occurrence
- Mobile-responsive design
UI Design:
- Clean, Tufte CSS-styled interface
- Popular concordance lookups grid
- Usage tips for KJV-specific spellings
- Search box prominently featured
- Stats showing word frequency and distribution
Implementation:
- Route: /concordance with ?word= parameter
- Word boundary regex matching for accuracy
- Real-time highlighting of matched words
- Complete Bible text scanning
- Organized output by biblical book order
Integration:
- Added to homepage navigation under "Concordance and Search"
- Standalone page with comprehensive instructions
- Links from every occurrence to full verse pages
Usage Notes:
- Exact word matching (won't find inflected forms)
- Case-insensitive search
- Handles KJV archaic forms (loveth, cometh, etc.)
- Proper nouns supported (Jesus, Moses, David)
- Theological terms supported (justification, redemption)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>