aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2015-05-09 18:55:20 +0200
committerThomas Citharel <tcit@tcit.fr>2015-05-09 18:55:20 +0200
commit8d543d115aaf82cbe7785e0be50d2070979299c9 (patch)
treebc0cc46a0b994303e9759bc31f3fc165ee08de13 /themes
parent02d4ab1a60eb48f00ad60ec48d02b65509a27e56 (diff)
downloadwallabag-8d543d115aaf82cbe7785e0be50d2070979299c9.tar.gz
wallabag-8d543d115aaf82cbe7785e0be50d2070979299c9.tar.zst
wallabag-8d543d115aaf82cbe7785e0be50d2070979299c9.zip
added message for #1079
Diffstat (limited to 'themes')
-rwxr-xr-xthemes/baggy/tags.twig4
1 files changed, 4 insertions, 0 deletions
diff --git a/themes/baggy/tags.twig b/themes/baggy/tags.twig
index 65930eb2..be234a63 100755
--- a/themes/baggy/tags.twig
+++ b/themes/baggy/tags.twig
@@ -6,8 +6,12 @@
6{% block content %} 6{% block content %}
7<h2>{% trans "Tags" %}</h2> 7<h2>{% trans "Tags" %}</h2>
8<ul class="list-tags"> 8<ul class="list-tags">
9{% if tags is not empty %}
9{% 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 }}) 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 }})
10</li> 11</li>
11{% endfor %} 12{% endfor %}
13{% else %}
14{% trans "No tags found. You must view an article to set tags for it." %}
15{% endif %}
12</ul> 16</ul>
13{% endblock %} 17{% endblock %}