aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/baggy/tags.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-28 13:58:12 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-28 13:58:12 +0100
commit19f2f11ee810cfd580cc23dabfafa658b5c4e99e (patch)
tree3403968dc56ea4b40efa266837c37f38408ca4a1 /src/Wallabag/CoreBundle/Resources/views/baggy/tags.twig
parent9e11bfa4a632374df5b1e6bb380c769b6231225c (diff)
downloadwallabag-19f2f11ee810cfd580cc23dabfafa658b5c4e99e.tar.gz
wallabag-19f2f11ee810cfd580cc23dabfafa658b5c4e99e.tar.zst
wallabag-19f2f11ee810cfd580cc23dabfafa658b5c4e99e.zip
fix themes symlinks
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/baggy/tags.twig')
-rwxr-xr-xsrc/Wallabag/CoreBundle/Resources/views/baggy/tags.twig13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/baggy/tags.twig b/src/Wallabag/CoreBundle/Resources/views/baggy/tags.twig
new file mode 100755
index 00000000..65930eb2
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/baggy/tags.twig
@@ -0,0 +1,13 @@
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{% 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{% endfor %}
12</ul>
13{% endblock %}