duckquill/templates/taxonomy_list.html
daudix-UFO d39b7f5630
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/manual/woodpecker Pipeline was successful
feat: Bootstrap icons, new H1 style, symlink README to site index
2023-10-28 04:20:09 +03:00

20 lines
380 B
HTML

{% 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>
{{ tag.name }}
</a>
<br />
</small>
{% endfor %}
</article>
{% endblock content %}