aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
blob: c2a461b83d7f0c4f03a48e7e1a20377d907ad901 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title "Tags" %}

{% block content %}
    {% if tags is empty %}
        <div class="messages warning"><p>{% trans %}No tags found.{% endtrans %}</p></div>
    {% else %}
        {% for tag in tags %}
            {{tag.label}}
        {% endfor %}
    {% endif %}
{% endblock %}