aboutsummaryrefslogtreecommitdiffstats
path: root/templates/thoughts.html
blob: 0d768e46b4df4826ee20c4ed8a07e3f85d07f459 (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 %}