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

{{title}}

{% for section in sections %}

{{section}}

    {% for item in sections[section] %}
  • {{item}}
  • {% endfor %}
{% endfor %}
{% endblock %}