diff --git a/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig index 7c2a9f45f..c2a461b83 100644 --- a/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig @@ -3,25 +3,11 @@ {% block title "Tags" %} {% block content %} - {% block pager %} - {% if tags is not empty %} -
-
{{ tags.count }} {% trans %}tags{% endtrans %}
- -
- {% endif %} - {% endblock %} - {% if tags is empty %}

{% trans %}No tags found.{% endtrans %}

{% else %} - {% for tag in tags %}{{tag.title}} + {% for tag in tags %} + {{tag.label}} {% endfor %} {% endif %} {% endblock %}