aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorSimounet <contact@simounet.net>2017-12-20 21:04:28 +0100
committerNicolas Lœuillet <nicolas@loeuillet.org>2017-12-26 09:00:33 +0100
commita8541089be426b78c4bf48743e53e17af3ef432a (patch)
tree660eafba0d229a54db1a49335e9b095be34d5ca8 /src
parentac8489f5f7fc44104c501e917d6f9889c50092a4 (diff)
downloadwallabag-a8541089be426b78c4bf48743e53e17af3ef432a.tar.gz
wallabag-a8541089be426b78c4bf48743e53e17af3ef432a.tar.zst
wallabag-a8541089be426b78c4bf48743e53e17af3ef432a.zip
Useless span removed from the card's title
Diffstat (limited to 'src')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/Card/_content.html.twig8
1 files changed, 3 insertions, 5 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 f02dfba4..06dc0b6d 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
@@ -2,11 +2,9 @@
2 {% if withPreview is defined %} 2 {% if withPreview is defined %}
3 <i class="grey-text text-darken-4 activator material-icons right">more_vert</i> 3 <i class="grey-text text-darken-4 activator material-icons right">more_vert</i>
4 {% endif %} 4 {% endif %}
5 <span class="card-title dot-ellipsis dot-resize-update"> 5 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title| striptags | e('html_attr') }}" class="card-title dot-ellipsis dot-resize-update">
6 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title| striptags | e('html_attr') }}"> 6 {{ entry.title | striptags | truncate(80, true, '…') | raw | default('config.form_rules.faq.variable_description.title'|trans) }}
7 {{ entry.title | striptags | truncate(80, true, '…') | raw | default('config.form_rules.faq.variable_description.title'|trans) }} 7 </a>
8 </a>
9 </span>
10 8
11 <div class="{{ subClass|default('original grey-text') }}"> 9 <div class="{{ subClass|default('original grey-text') }}">
12 <a href="{{ entry.url|e }}" target="_blank" title="{{ entry.domainName|removeWww }}" class="tool grey-text">{{ entry.domainName|removeWww }}</a> 10 <a href="{{ entry.url|e }}" target="_blank" title="{{ entry.domainName|removeWww }}" class="tool grey-text">{{ entry.domainName|removeWww }}</a>