aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-11-14 10:01:12 +0100
committerGitHub <noreply@github.com>2016-11-14 10:01:12 +0100
commitd37081e50b5c6f6d6d37523ab51082947c54fe03 (patch)
treeaa85385af6fe1002d9de3427c37ce5a643773ed4 /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig
parent8315507384c5cbc26d6f73729aeb97395e3e55fa (diff)
parent8d7b4f0eff9d07f8d6d354e09fd926abf26aa4ce (diff)
downloadwallabag-d37081e50b5c6f6d6d37523ab51082947c54fe03.tar.gz
wallabag-d37081e50b5c6f6d6d37523ab51082947c54fe03.tar.zst
wallabag-d37081e50b5c6f6d6d37523ab51082947c54fe03.zip
Merge pull request #2562 from wallabag/image-bigger
Bigger image preview in case of only image content
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig
new file mode 100644
index 00000000..9f696d06
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig
@@ -0,0 +1,14 @@
1<div class="card-action">
2 <span class="reading-time grey-text">
3 <i class="material-icons" title="{{ 'entry.list.reading_time'|trans }}">timer</i>
4 {{ entry.readingTime / app.user.config.readingSpeed|round }} min
5 </span>
6
7 <ul class="tools right">
8 <li>
9 <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>
10 <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>
11 <a title="{{ 'entry.list.delete'|trans }}" class="tool grey-text delete" href="{{ path('delete_entry', { 'id': entry.id }) }}"><i class="material-icons">delete</i></a>
12 </li>
13 </ul>
14</div>