{{ story.kids_title }}

A Bible Story for Kids

Find it in the Bible: {% for verse in story.verses %}{{ verse }}{% if not loop.last %}, {% endif %}{% endfor %}

Characters: {{ story.characters | join(', ') }}

* * *
{% for paragraph in story.kids_narrative.split('\n\n') %} {% if loop.first %}

{{ paragraph.split(' ')[:3] | join(' ') }} {{ paragraph.split(' ')[3:] | join(' ') }}

{% else %}

{{ paragraph }}

{% endif %} {% endfor %}