aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-26 13:53:23 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-26 13:53:23 +0200
commit7a5043f187a1f9aac37f359c8f407e5febea50f7 (patch)
tree5f38e2ee0f60d102d27548b7a5f26c25e2afd96d /src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
parentc68720d40eec94c80a316e8ffe04fb22768b3563 (diff)
downloadwallabag-7a5043f187a1f9aac37f359c8f407e5febea50f7.tar.gz
wallabag-7a5043f187a1f9aac37f359c8f407e5febea50f7.tar.zst
wallabag-7a5043f187a1f9aac37f359c8f407e5febea50f7.zip
Added tag label in the page title
Fix #2472
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
index 3af88b23..f7c9392d 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
@@ -1,7 +1,11 @@
1{% extends "WallabagCoreBundle::layout.html.twig" %} 1{% extends "WallabagCoreBundle::layout.html.twig" %}
2 2
3{% block title %} 3{% block title %}
4 {% include "@WallabagCore/themes/common/Entry/_title.html.twig" %} 4 {% set params = {} %}
5 {% if tag is defined %}
6 {% set params = {'label': tag} %}
7 {% endif %}
8 {% include "@WallabagCore/themes/common/Entry/_title.html.twig" with {'params': params} %}
5{% endblock %} 9{% endblock %}
6 10
7{% block content %} 11{% block content %}