]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
Disable translation in test
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / baggy / Tag / tags.html.twig
CommitLineData
3f3fbef1
NL
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title "Tags" %}
4
5{% block content %}
3f3fbef1
NL
6 {% if tags is empty %}
7 <div class="messages warning"><p>{% trans %}No tags found.{% endtrans %}</p></div>
8 {% else %}
47e12c36
NL
9 {% for tag in tags %}
10 {{tag.label}}
3f3fbef1
NL
11 {% endfor %}
12 {% endif %}
13{% endblock %}