diff options
author | Kevin Decherf <kevin@kdecherf.com> | 2018-11-26 18:45:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 18:45:12 +0100 |
commit | 72efc8ceeb277df10fc090cbc238f1606445ae57 (patch) | |
tree | 2ea78231f7c1b8749a1c721976f2da0f80920a45 /src/Wallabag | |
parent | 6f2287da69841b98c4c0db93b6dce1325ba4311d (diff) | |
parent | e5de9917fdd78d4cd3b46b376e3b2a4175efa36a (diff) | |
download | wallabag-72efc8ceeb277df10fc090cbc238f1606445ae57.tar.gz wallabag-72efc8ceeb277df10fc090cbc238f1606445ae57.tar.zst wallabag-72efc8ceeb277df10fc090cbc238f1606445ae57.zip |
Merge pull request #3782 from wallabag/issue-3779
material: fix missing thumbnail on list view
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig | 11 |
1 files changed, 5 insertions, 6 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 7c83c3bb..1c00f2fa 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,10 +1,9 @@ | |||
1 | <div class="card-stacked"> | 1 | <div class="card-stacked"> |
2 | <div class="preview"> | 2 | <div class="card-preview"> |
3 | {% if entry.previewPicture is not null %} | 3 | <a href="{{ path('view', { 'id': entry.id }) }}"> |
4 | <a href="{{ path('view', { 'id': entry.id }) }}"> | 4 | {% set previewClassModifier = entry.previewPicture ? '' : ' preview--default' %} |
5 | <img src="{{ entry.previewPicture }}" /> | 5 | <span class="preview{{ previewClassModifier }}" style="background-image: url({{ entry.previewPicture | default(asset('wallassets/themes/_global/img/logo-square.svg')) }})"></span> |
6 | </a> | 6 | </a> |
7 | {% endif %} | ||
8 | </div> | 7 | </div> |
9 | {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry, 'withTags': true, 'subClass': 'metadata'} only %} | 8 | {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry, 'withTags': true, 'subClass': 'metadata'} only %} |
10 | <ul class="tools-list hide-on-small-only"> | 9 | <ul class="tools-list hide-on-small-only"> |