Display posts count for each tag in the tag list

And increase the "small" for size to closest pixel-perfect value
This commit is contained in:
daudix
2024-06-18 05:44:13 +03:00
parent 276a3a37ea
commit bcf57b7147
5 changed files with 35 additions and 11 deletions

View File

@ -6,7 +6,7 @@
<br />
<ul class="tags">
{% for tag in terms %}
<li><a class="tag" href="{{ get_taxonomy_url(kind='tags', name=tag.name, lang=lang) }}">{{ tag.name }}</a></li>
<li><a href="{{ get_taxonomy_url(kind='tags', name=tag.name, lang=lang) }}"><span class="tag">{{ tag.name }}</span><span class="count">{{ tag.pages | length }}</span></a></li>
{% endfor %}
</ul>
{% endblock content %}