aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-06-21 14:51:46 +0200
committerGitHub <noreply@github.com>2017-06-21 14:51:46 +0200
commit8c68acff2abe0573e287ad9ee4589668d1bb7ffa (patch)
tree0e67b949bde3bf8c441bfa77cbf9aa0a49326f72 /src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig
parent80784b782becfaa297e6d9cbb0584e27739cffc8 (diff)
parentbd40f1af88979cb5257206d178d26819e350a24c (diff)
downloadwallabag-8c68acff2abe0573e287ad9ee4589668d1bb7ffa.tar.gz
wallabag-8c68acff2abe0573e287ad9ee4589668d1bb7ffa.tar.zst
wallabag-8c68acff2abe0573e287ad9ee4589668d1bb7ffa.zip
Merge pull request #3207 from wallabag/tag-rss
Add RSS for tags
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig
new file mode 100644
index 00000000..2bf9b2bd
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig
@@ -0,0 +1,6 @@
1{% if tag is defined %}
2 <a rel="alternate" type="application/rss+xml" href="{{ path('tag_rss', {'username': app.user.username, 'token': app.user.config.rssToken, 'slug': tag.slug}) }}" class="right"><i class="material-icons md-24">rss_feed</i></a>
3{% elseif currentRoute in ['unread', 'starred', 'archive', 'all'] %}
4 <a rel="alternate" type="application/rss+xml" href="{{ path(currentRoute ~ '_rss', {'username': app.user.username, 'token': app.user.config.rssToken}) }}" class="right"><i class="material-icons">rss_feed</i></a>
5{% endif %}
6