{% extends "base.html" %} {% block content %}

{{ section.title | default(value="Elf's Notes") }}

{{ section.content | safe }}

Subjects Available:

{% for subsection_path in section.subsections %} {% set subsection = get_section(path=subsection_path) %}

{{ subsection.title }}

{{ subsection.description | default(value="No description provided") }}

{% endfor %}
{% endblock %}