You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
477 B
HTML

{% extends "index.html" %}
{% block main_content %}
<h1 class="page-title">Tags</h1>
<div class="tag-cloud">
<ul class="tags">
{% for term in terms %}
<li>
<a href="{{ term.permalink | safe }}">
{{ term.name }} ({{ term.pages | length }} post{{ term.pages | length | pluralize }})
</a>
</li>
{% endfor %}
</ul>
</div>
{% endblock main_content %}