aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2017-11-05 15:18:45 +0100
committerKevin Decherf <kevin@kdecherf.com>2017-11-06 20:49:41 +0100
commit2f510787e7a37be1068390b0956257843a2a9ab6 (patch)
tree66d0add0ebd3111bc51f5348adc54c46e164aebd /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
parent8abb6c13219c7125f57667c9272db0a5c5d2bcb7 (diff)
downloadwallabag-2f510787e7a37be1068390b0956257843a2a9ab6.tar.gz
wallabag-2f510787e7a37be1068390b0956257843a2a9ab6.tar.zst
wallabag-2f510787e7a37be1068390b0956257843a2a9ab6.zip
material: replace card activator with article link on card preview
Fixes #2424 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
index b64e1436..5f412967 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
@@ -1,5 +1,11 @@
1<div class="card-stacked"> 1<div class="card-stacked">
2 <div class="preview">{% if entry.previewPicture is not null %}<img src="{{ entry.previewPicture }}" />{% endif %}</div> 2 <div class="preview">
3 {% if entry.previewPicture is not null %}
4 <a href="{{ path('view', { 'id': entry.id }) }}">
5 <img src="{{ entry.previewPicture }}" />
6 </a>
7 {% endif %}
8 </div>
3 <div class="card-content"> 9 <div class="card-content">
4 <span class="card-title dot-ellipsis dot-resize-update"> 10 <span class="card-title dot-ellipsis dot-resize-update">
5 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title | striptags | e('html_attr') }}"> 11 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title | striptags | e('html_attr') }}">