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