1
4
Fork 1
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.

16 lines
301 B
HTML

{% extends "index.html" %}
{% block content %}
<main>
<h2>Tagy</h2>
<hr>
{% if terms %}
<ul>
{% for term in terms %}
<li><a href="{{ term.permalink }}">{{ term.name | capitalize() }}</a> ({{ term.pages | length }})</li>
{% endfor %}
</ul>
{% endif %}
</main>
{% endblock content %}