{% extends "WallabagCoreBundle::layout.html.twig" %} {% 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}} {% endfor %} {% endif %} {% endblock %}