blob: 8b0382017987c880d1de47e8dddce1d6b7f741fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block title %}Tags — {{ SITENAME }}{% endblock %}
{% block content %}
<section id="content">
<h2>Published article series</h2>
<p>
{% for tag, articles in tags|sort %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag.name }}</a> ({{ articles|count }})<br>
{% endfor %}
</p>
</section>
{% endblock %}
|