]> git.immae.eu Git - github/wallabag/wallabag.git/blob - themes/baggy/tags.twig
added message for #1079
[github/wallabag/wallabag.git] / themes / baggy / tags.twig
1 {% extends "layout.twig" %}
2 {% block title %}Tags{% endblock %}
3 {% block menu %}
4 {% include '_menu.twig' %}
5 {% endblock %}
6 {% block content %}
7 <h2>{% trans "Tags" %}</h2>
8 <ul class="list-tags">
9 {% if tags is not empty %}
10 {% for tag in tags %}<li>{% if token != '' %}<a class="icon icon-rss" href="?feed&amp;type=tag&amp;user_id={{ user_id }}&amp;tag_id={{ tag.id }}&amp;token={{ token }}" target="_blank"><span>rss</span></a>{% endif %} <a href="./?view=tag&amp;id={{ tag.id }}">{{ tag.value }}</a> ({{ tag.entriescount }})
11 </li>
12 {% endfor %}
13 {% else %}
14 {% trans "No tags found. You must view an article to set tags for it." %}
15 {% endif %}
16 </ul>
17 {% endblock %}