{% extends "template.html.j2" %} {% block content %} {% for category_name, thoughts in tree.items() %}

{{category_name}}

{% for id_, title, dt in thoughts %}
{{title}}
{{dt}}
{% endfor %}
{% endfor %} {% endblock %}