]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
material: replace card activator with article link on card preview
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Entry / _card_list.html.twig
1 <div class="card-stacked">
2 <div class="preview">
3 {% if entry.previewPicture is not null %}
4 <a href="{{ path('view', { 'id': entry.id }) }}">
5 <img src="{{ entry.previewPicture }}" />
6 </a>
7 {% endif %}
8 </div>
9 <div class="card-content">
10 <span class="card-title dot-ellipsis dot-resize-update">
11 <a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title | striptags | e('html_attr') }}">
12 {{ entry.title| striptags | truncate(120, true, '…') | raw }}
13 </a>
14 </span>
15
16 <div class="metadata">
17 <a href="{{ entry.url|e }}" class="grey-text domain" target="_blank" title="{{ entry.domainName|removeWww }}">
18 <span>{{ entry.domainName|removeWww }}</span>
19 </a>
20 {% for tag in entry.tags | slice(0, 3) %}
21 <span class="chip hide-on-med-and-down">
22 <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a>
23 </span>
24 {% endfor %}
25 </div>
26 </div>
27 <ul class="tools-list hide-on-small-only">
28 <li>
29 <a title="{{ 'entry.list.toogle_as_read'|trans }}" class="tool grey-text" href="{{ path('archive_entry', { 'id': entry.id }) }}"><i class="material-icons">{% if entry.isArchived == 0 %}done{% else %}redo{% endif %}</i></a>
30 <a title="{{ 'entry.list.toogle_as_star'|trans }}" class="tool grey-text" href="{{ path('star_entry', { 'id': entry.id }) }}"><i class="material-icons">{% if entry.isStarred == 0 %}star_border{% else %}star{% endif %}</i></a>
31 <a title="{{ 'entry.list.delete'|trans }}" onclick="return confirm('{{ 'entry.confirm.delete'|trans|escape('js') }}')" class="tool grey-text delete" href="{{ path('delete_entry', { 'id': entry.id }) }}"><i class="material-icons">delete</i></a>
32 </li>
33 </ul>
34 </div>