]> git.immae.eu Git - github/wallabag/wallabag.git/blame - themes/baggy/tags.twig
added message for #1079
[github/wallabag/wallabag.git] / themes / baggy / tags.twig
CommitLineData
943ac3c7 1{% extends "layout.twig" %}
a87a1b7d 2{% block title %}Tags{% endblock %}
943ac3c7
NL
3{% block menu %}
4{% include '_menu.twig' %}
5{% endblock %}
6{% block content %}
7<h2>{% trans "Tags" %}</h2>
8<ul class="list-tags">
8d543d11 9{% if tags is not empty %}
fb26cc93 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 }})
943ac3c7
NL
11</li>
12{% endfor %}
8d543d11
TC
13{% else %}
14{% trans "No tags found. You must view an article to set tags for it." %}
15{% endif %}
943ac3c7 16</ul>
a87a1b7d 17{% endblock %}