]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_preview.html.twig
e93646dcfd0d358be661cbc0464bd35023e57bcb
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Entry / _card_preview.html.twig
1 <div class="card">
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 <a href="{{ path('view', { 'id': entry.id }) }}">
10 <span class="preview" style="background-image: url({{ entry.previewPicture }})"></span>
11 </a>
12 </div>
13 {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry, 'withPreview': true} only %}
14 </div>
15
16 <div class="card-reveal">
17 <i class="card-title activator grey-text text-darken-4 material-icons right">clear</i>
18 <span class="card-title">
19 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title | striptags | e('html_attr') }}">
20 {{ entry.title | striptags | truncate(80, true, '…') | raw }}
21 </a>
22 </span>
23
24 <p>{{ entry.content|striptags|slice(0, 250)|raw }}&hellip;</p>
25
26 <ul class="card-entry-labels-hidden">
27 {% for tag in entry.tags %}
28 <li><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a></li>
29 {% endfor %}
30 </ul>
31 </div>
32
33 {% include "@WallabagCore/themes/material/Entry/_card_actions.html.twig" with {'entry': entry} only %}
34 </div>