use native tera filters

This commit is contained in:
yggverse 2025-08-20 14:46:29 +03:00
parent 59b1df76c9
commit 02e8e1cfa7
3 changed files with 8 additions and 10 deletions

View file

@ -29,5 +29,9 @@
{% endif %}
{% if next %}<a href="{{ next }}">Next</a>{% endif %}
{% if back %}<a href="{{ back }}">Back</a>{% endif %}
{% if pagination_totals %}<span>{{ pagination_totals }}</span>{% endif %}
{% if total %}
<span>
Page {{ page }} / {{ pages }} ({{ total }} post{{ total | pluralize(plural="s") }} total)
</span>
{% endif %}
{% endblock content %}