summaryrefslogtreecommitdiff
path: root/templates/blog_tags.html
blob: bcf7d425d2f48552cc7aa9bd64e3d75999720af2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "page.html" %}

{% set is_blog = True %}

{% block contents %}
<h2>All Tags</h2>
<p>
{%- for tag, post_set in posts %}
<a href="#{{ tag }}">{{ tag }}</a>
{% endfor %}
</p>


{% for tag, post_set in posts %}
<h2 id="{{ tag }}">{{ tag }}</h2>
<ul>
    {% for post in post_set %}
    <li><a href="{{ post.filename|replace('.rst', '.html') }}">{{ post.title }}</a></li>
    {% endfor %}
</ul>
{% endfor %}
{% endblock %}