diff options
author | Matt Burke <burkemw3@gmail.com> | 2018-10-11 19:47:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 19:47:48 -0400 |
commit | d73bfdbddb9f651f6f1a4b58e60d8f65a7d55343 (patch) | |
tree | b54733feb14ddb22cc45c060afd56c9fa237d027 | |
parent | 0f5c15d5434ab1ce22f250aeb56271162a6deca0 (diff) | |
download | wallabag-d73bfdbddb9f651f6f1a4b58e60d8f65a7d55343.tar.gz wallabag-d73bfdbddb9f651f6f1a4b58e60d8f65a7d55343.tar.zst wallabag-d73bfdbddb9f651f6f1a4b58e60d8f65a7d55343.zip |
Show tags on non-image gallery preview card
Tags and images aren't coupled, so they shouldn't be coupled in
the UI, either. This also makes the titles and source domains show
up consistently for image and non-image entry cards.
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_no_preview.html.twig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_no_preview.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_no_preview.html.twig index 8e6bbae0..4fd4debd 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_no_preview.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_no_preview.html.twig | |||
@@ -1,5 +1,12 @@ | |||
1 | <div class="card"> | 1 | <div class="card"> |
2 | <div class="card-body"> | 2 | <div class="card-body"> |
3 | <div class="card-image waves-effect waves-block waves-light"> | ||
4 | <ul class="card-entry-labels"> | ||
5 | {% for tag in entry.tags | slice(0, 3) %} | ||
6 | <li><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a></li> | ||
7 | {% endfor %} | ||
8 | </ul> | ||
9 | </div> | ||
3 | {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry} only %} | 10 | {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry} only %} |
4 | </div> | 11 | </div> |
5 | 12 | ||