{% extends "header.html" %} {% macro name_value_box(title, dictionary) %} {{title}}
{% for key, value in dictionary.items() %}
{{key}}
{{value}}
{% endfor %}
{% endmacro %} {% macro list_box(title, list) %} {{title}}
{% for value in list %}
{{value}}
{% endfor %}
{% endmacro %} {% block content %} {% endblock %}