{% extends "./layout.html" %} {% block title %}{{ progress.current.title }} | {{ title }}{% endblock %} {% block style %} {# Default styles if not disabled #} {% if not styles.print %} {% endif %} {# Style from plugins #} {% for resource in plugins.resources.css %} {% if resource.url %} {% else %} {% endif %} {% endfor %} {# Custom styles from the book #} {% for type, style in styles %} {% endfor %} {% endblock %} {% block content %}
{% block page %}

{{ progress.current.title }}

{% for section in content %}
{% if section.type == "normal" %} {% autoescape false %}{{ section.content }}{% endautoescape %} {% endif %}
{% endfor %} {% endblock %}
{% endblock %}