{% extends "layout.html" %} {% block title %}{{ progress.current.title }}{% parent %}{% endblock %} {% block content %}
{% include "includes/book/header.html" %} {% include "includes/book/summary.html" %}
{% include "includes/book/progress.html" %}
{% for section in content %}
{% if section.type == "normal" %} {% autoescape false %}{{ section.content }}{% endautoescape %} {% elif section.type == "exercise" %} {% include "./includes/book/exercise.html" with {section: section} %} {% endif %}
{% endfor %}
{% include "includes/book/footer.html" %}
{% endblock %}