{% extends "base.html" %} {% block title %}{{ plan.name }} - KJV Study{% endblock %} {% block description %}{{ plan.description }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ plan.name }}

{{ plan.description }}

{% if pdf_available and pdf_url %}
Download Plan (PDF)
{% endif %}
{{ plan.duration_days }}
Days
{{ (plan.duration_days / 7) | round | int }}
Weeks
{{ plan.overview }}

Complete Reading Schedule

All {{ plan.duration_days }} days of readings for this plan.

{% set all_days = plan.days if plan.days else plan.sample_days %} {% for day in all_days %}
Day {{ day.day }}
{% for reading in day.readings %} {% set ref_parts = reading.split(' ') %} {% if ref_parts|length >= 2 %} {% set chapter_verse = ref_parts[-1] %} {% if ':' in chapter_verse %} {# Format: "Book Chapter:Verse" or "Book Chapter:Verse-Verse" #} {% set chapter = chapter_verse.split(':')[0] %} {% set verse_part = chapter_verse.split(':')[1] %} {% if '-' in verse_part %} {% set verse_num = verse_part.split('-')[0] %} {% else %} {% set verse_num = verse_part %} {% endif %} {% set book = ' '.join(ref_parts[:-1]) %} {{ reading }} {% elif '-' in chapter_verse %} {# Format: "Book Chapter-Chapter" (e.g., "Psalm 1-3") #} {% set first_chapter = chapter_verse.split('-')[0] %} {% set book = ' '.join(ref_parts[:-1]) %} {{ reading }} {% else %} {# Format: "Book Chapter" (single chapter) #} {% set chapter = ref_parts[-1] %} {% set book = ' '.join(ref_parts[:-1]) %} {{ reading }} {% endif %} {% else %} {# Fallback: just display as text #} {{ reading }} {% endif %} {% endfor %}
Theme: {{ day.theme }}
{% endfor %}

How to Use This Plan

Consistency matters more than perfection. If you miss a day, simply continue where you left off rather than attempting to catch up through extended readings. The goal is sustainable Scripture engagement, not merely completing a schedule.

Consider maintaining a journal to record insights, questions, and applications. Many find morning reading sets a godly tone for the day, though evening reflection suits others better. Discover what timing best facilitates your consistent engagement with God's Word.

Prayer should accompany reading. Ask the Holy Spirit for illumination, understanding, and application. Scripture study transforms when approached not merely as information gathering but as communion with the living God who speaks through His Word.

← Back to all reading plans

{% endblock %}