{% extends 'public/base.html' %} {% block title %}{{ pt('all_tags') }} - {{ site_name }}{% endblock %} {% block meta_description %}{{ pt('all_tags_desc') }} - {{ site_name }}{% endblock %} {% block schema %} {% endblock %} {% block content %}

{{ pt('all_tags') }}

{{ pt('all_tags_desc') }}

{% if tags %}
{% for tag_name, count in tags %} {{ tag_name }} {{ count }} {{ pt('post_singular') if count == 1 else pt('posts_plural') }} {% endfor %}
{% else %}

{{ pt('no_tags') }}

{% endif %} {% endblock %}