{% extends "base.html" %} {% block body %}
{% if not chapter %} No such chapter. {% else %}

{{ chapter.title }}

{% if chapter.ebook %}
{% endif %}
{% if chapter.content %}
Chapter Content

{{ chapter.content | safe }}

{% else %}

No content found.

{% endif %} {% endif %}
{% endblock %}