dawn/templates/tags/list.html
2022-05-08 02:01:39 -04:00

18 lines
469 B
HTML

{% extends "index.html" %}
{% block content %}
<div class="post">
<h1 class="post_title">all tags</h1>
<ul class="tag_list">
{% for term in terms %}
<li class="tag_list_item">
<a class = "tag_item" href="{{ term.permalink | safe }}">
:: {{ term.name }} ({{ term.pages | length }} post{{ term.pages | length | pluralize }})
</a>
</li>
{% endfor -%}
<ul>
</div>
{% endblock content %}