summaryrefslogtreecommitdiffstats
path: root/templates/blog/tags.html
blob: a1806343bf5c05a9ee01316648f06408fa8024a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- -*- Mode: django-html-mumamo -*- -->

{% extends "blog/base.html" %}

{% block subtitle %}
  blog/tags
{% endblock %}

{% block content %}
  <ul>
    {% for tag in taglist %}
      <li>
	<a href="/blog/tag/{{ tag.name }}">{{ tag.name }}</a>
      </li>
    {% empty %}
      Sorry, no tags here.
    {% endfor %}
  </ul>
{% endblock %}