aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSimounet <contact@simounet.net>2017-12-20 21:02:56 +0100
committerNicolas Lœuillet <nicolas@loeuillet.org>2017-12-26 08:55:23 +0100
commitac8489f5f7fc44104c501e917d6f9889c50092a4 (patch)
tree8ab942547a17a02e9dd15ef6b6ca2d3d403c1670
parent3c9548257ccb92a13c658372fc09dccff117bb36 (diff)
downloadwallabag-ac8489f5f7fc44104c501e917d6f9889c50092a4.tar.gz
wallabag-ac8489f5f7fc44104c501e917d6f9889c50092a4.tar.zst
wallabag-ac8489f5f7fc44104c501e917d6f9889c50092a4.zip
Default card title
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/Card/_content.html.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/Card/_content.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/Card/_content.html.twig
index 4836a4ea..f02dfba4 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/Card/_content.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/Card/_content.html.twig
@@ -4,7 +4,7 @@
4 {% endif %} 4 {% endif %}
5 <span class="card-title dot-ellipsis dot-resize-update"> 5 <span class="card-title dot-ellipsis dot-resize-update">
6 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title| striptags | e('html_attr') }}"> 6 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title| striptags | e('html_attr') }}">
7 {{ entry.title | striptags | truncate(80, true, '…') | raw }} 7 {{ entry.title | striptags | truncate(80, true, '…') | raw | default('config.form_rules.faq.variable_description.title'|trans) }}
8 </a> 8 </a>
9 </span> 9 </span>
10 10