{% for section in pages[article.path].content %}
{% if section.type == "normal" %}
{% autoescape false %}{{ section.content }}{% endautoescape %}
{% elif section.type == "exercise" %}
{% autoescape false %}{{ section.content }}{% endautoescape %}
{% autoescape false %}{{ section.code.base|code }}{% endautoescape %}
{% set exercise = exercise + 1 %}
{% elif section.type == "quiz" %}
{% autoescape false %}{{ section.content }}{% endautoescape %}
{% autoescape false %}{{ section.quiz.base }}{% endautoescape %}
{% set exercise = exercise + 1 %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}