aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorSimounet <contact@simounet.net>2018-07-11 23:57:01 +0200
committerSimounet <contact@simounet.net>2018-11-21 18:51:44 +0100
commit2daae770942911428fba11af207e61e6460cff98 (patch)
tree351a0f4ef3835e41e8173aaeedc5fd45c1022808 /src
parent59a31ed07f0933d90780696e18e1e7450ff15045 (diff)
downloadwallabag-2daae770942911428fba11af207e61e6460cff98.tar.gz
wallabag-2daae770942911428fba11af207e61e6460cff98.tar.zst
wallabag-2daae770942911428fba11af207e61e6460cff98.zip
Card no preview replaced by wallabag logo
Diffstat (limited to 'src')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_preview.html.twig7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_preview.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_preview.html.twig
index dee1f55b..581a1813 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_preview.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_preview.html.twig
@@ -7,11 +7,8 @@
7 {% endfor %} 7 {% endfor %}
8 </ul> 8 </ul>
9 <a href="{{ path('view', { 'id': entry.id }) }}"> 9 <a href="{{ path('view', { 'id': entry.id }) }}">
10 {% if entry.previewPicture is null %} 10 {% set previewClassModifier = entry.previewPicture ? '' : ' preview--default' %}
11 <span class="preview placeholder" style="background-image: url({{ asset('wallassets/themes/_global/img/logo-square.svg') }});"></span> 11 <span class="preview{{ previewClassModifier }}" style="background-image: url({{ entry.previewPicture | default(asset('wallassets/themes/_global/img/logo-square.svg')) }})"></span>
12 {% else %}
13 <span class="preview" style="background-image: url({{ entry.previewPicture }})"></span>
14 {% endif %}
15 </a> 12 </a>
16 </div> 13 </div>
17 {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry, 'withPreview': true} only %} 14 {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry, 'withPreview': true} only %}