{% extends "templates/base.html" %} {% block title %}{{topic.title}} ({{course.title}}){% endblock %} {% block head_include %} {% endblock %} {% block content %}

{{ topic.title }}

{% for s in topic.sections %}
{{ render_section(s) }}
{% endfor %}
{% endblock %} {% macro render_section(s) %} {% if s.type == "text" %} {{ render_section_text(s) }} {% elif s.type == "code" %} {{ render_section_code(s) }} {% else %}
Unknown section type: {{s.type}}
{% endif %} {% endmacro %} {% macro render_section_text(s) %} {{ s.contents | markdown }} {% endmacro %} {% macro render_section_code(s) %}

Editor

Output

Dashed box

    
{% endmacro %} {%- block script %} {{ super() }} {%- endblock %} {%- block style %} {{ super() }} {%- endblock %}