{% extends "base.html" %} {% block title %}Bible Stories for Kids - KJV Study{% endblock %} {% block description %}Explore {{ story_count }} kid-friendly Bible stories from Creation to the early Church, perfect for family devotions and Sunday school.{% endblock %} {% block og_type %}website{% endblock %} {% block og_title %}Bible Stories for Kids - KJV Study{% endblock %} {% block og_description %}Explore {{ story_count }} kid-friendly Bible stories from Creation to the early Church, perfect for family devotions and Sunday school.{% endblock %} {% block head %} {% endblock %} {% block content %}

Bible Stories for Kids

{{ story_count }} stories across {{ category_count }} categories

These Bible stories are written just for you! They tell amazing true stories from God's Word in a way that's easy to understand and fun to read.

Looking for the grown-up versions?

Categories

{% for category in categories %}
{{ category.category }} {{ category.stories|length }} stories
{% endfor %}
No stories found. Try a different search!
{% for category in categories %}

{{ category.category }}

{{ category.description }}

{% for story in category.stories %} {% if story.kids_narrative %}

{{ story.kids_title or story.title }}

{{ story.kids_description or story.description }}

{% for verse in story.verses[:2] %}{{ verse }}{% if not loop.last %}, {% endif %}{% endfor %}{% if story.verses|length > 2 %} +{{ story.verses|length - 2 }} more{% endif %}
{% for character in story.characters[:4] %} {{ character }} {% endfor %}
{% for theme in story.themes[:3] %} {{ theme }} {% endfor %}
{% endif %} {% endfor %}
{% endfor %} {% endblock %}