after-dark/templates/tags.html

18 lines
383 B
HTML
Raw Normal View History

2017-11-16 18:03:32 +00:00
{% extends "index.html" %}
{% block content %}
{% block header %}
{{ super() }}
{% endblock header %}
<h1>Tags</h1>
{% if tags %}
<ul>
{% for tag in tags %}
<li><a href="{{ tag.permalink }}">{{ tag.name }}</a> ({{ tag.pages | length }})</li>
{% endfor %}
</ul>
{% endif %}
{% endblock content %}