{% extends "base.html" %} {% block title %}{{ guide.title }} - Bible Study Guide - KJV Bible{% endblock %} {% block description %}{{ guide.description }}{% endblock %} {% block og_type %}article{% endblock %} {% block og_title %}{{ guide.title }} - Bible Study Guide{% endblock %} {% block og_description %}{{ guide.description }}{% endblock %} {% block og_image %}https://kjvstudy.org/og/guide/{{ guide.slug }}.png{% endblock %} {% block twitter_image %}https://kjvstudy.org/og/guide/{{ guide.slug }}.png{% endblock %} {% block structured_data %} {% endblock %} {% block head %} {% endblock %} {% block content %}

{{ guide.title }}

{{ guide.description }}

{% if pdf_available and pdf_url %}
Download PDF
{% endif %} {% for section in guide.sections %} {% set section_index = loop.index %}

{{ section.title }}

{% for verse_data in section.verse_texts %}

{{ verse_data.reference }}
{{ verse_data.text }}

{% endfor %} {% set paragraphs = section.content.split('

') %} {% for paragraph in paragraphs %}

{{ paragraph | format_lists | safe }}

{% endfor %}
{% endfor %} {% endblock %}