{% extends "layout.html" %} {% block title %}{{ progress.current.title }}{% parent %}{% endblock %} {% block description %}{% endblock %} {% block robots %}index, follow{% endblock %} {% block content %}
{% include "includes/book/header.html" %} {% include "includes/book/summary.html" %}
{% for p in progress.chapters %} {% endfor %}
{% 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 %}
{% endblock %}