blob: 87172990f903aa1c32be5a2899cad08da865c604 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | {% extends "template.html" %}
{% block content %}
    {% for category_name, thoughts in tree.items() %}
    <h2 id={{category_name.replace(' ', '_')}}>{{category_name}}</h2>
    <dl>
        {% for id_, title, dt in thoughts %}
        <dt><a href={{'/thought?id=%i' % id_}}>title</a></dt>
        <dd>{{dt}}</dd>
        {% endfor %}
    </dl>
    {% endfor %}
{% endblock %}
 |