mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-20 12:36:18 +00:00
Merge pull request #3743 from burkemw3/patch-1
Show tags on non-image gallery preview card
This commit is contained in:
commit
ba69c04c27
1 changed files with 7 additions and 0 deletions
|
@ -1,5 +1,12 @@
|
|||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="card-image waves-effect waves-block waves-light">
|
||||
<ul class="card-entry-labels">
|
||||
{% for tag in entry.tags | slice(0, 3) %}
|
||||
<li><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry} only %}
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue