Mute article number text in tag/category taxonomy list

This commit is contained in:
timvisee 2021-03-01 18:34:16 +01:00
parent e586e278c0
commit d260111a74
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
2 changed files with 4 additions and 4 deletions

View File

@ -9,8 +9,8 @@
<ul>
{% for term in terms %}
<li>
<a href="{{ term.permalink | safe }}">{{ term.name | title }}</a>:
{{ term.pages | length }} article{{ term.pages | length | pluralize }}
<a href="{{ term.permalink | safe }}">{{ term.name | title }}</a><span class="muted">:
{{ term.pages | length }} article{{ term.pages | length | pluralize }}</span>
</li>
{% endfor %}
</ul>

View File

@ -9,8 +9,8 @@
<ul>
{% for term in terms %}
<li>
<a href="{{ term.permalink | safe }}" class="tag">{{ term.name }}</a>:
{{ term.pages | length }} article{{ term.pages | length | pluralize }}
<a href="{{ term.permalink | safe }}" class="tag">{{ term.name }}</a><span class="muted">:
{{ term.pages | length }} article{{ term.pages | length | pluralize }}</span>
</li>
{% endfor %}
</ul>