{% extends "layout.html" %} {% block title %}{{ progress.current.title }} | {{ title }}{% endblock %} {% block style %} {% for resource in plugins.resources.css %} {% if resource.url %} {% else %} {% endif %} {% endfor %} {% endblock %} {% block content %}

{{ progress.current.title }}

{% for section in content %}
{% if section.type == "normal" %} {% autoescape false %}{{ section.content }}{% endautoescape %} {% elif section.type == "exercise" %} {% include "./includes/page/exercise.html" with {section: section} %} {% elif section.type == "quiz" %} {% include "./includes/page/quiz.html" with {section: section} %} {% endif %}
{% endfor %} {% if progress.current.next and progress.current.next.path %} {% endif %}
{% endblock %}