duckquill/templates/taxonomy_list.html

20 lines
380 B
HTML
Raw Normal View History

2023-10-13 00:55:20 +00:00
{% extends "base.html" %}
{% block content %}
<h1>Tags</h1>
<small> {{ terms | length }} tags in total </small>
<article>
<br />
<br />
{% for tag in terms %}
<small>
<a href="{{ get_taxonomy_url(kind='tags', name=tag.name) }}">
<i class="bi bi-tag-fill"></i>
2023-10-13 00:55:20 +00:00
{{ tag.name }}
</a>
<br />
</small>
{% endfor %}
</article>
{% endblock content %}