aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-11-15 09:23:44 +0100
committerGitHub <noreply@github.com>2016-11-15 09:23:44 +0100
commitd213219ec785db757dba455acd53480ab0d292fb (patch)
treef217aca8f706fab417b00881c4053bde2f7aca90 /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig
parentdecf651bbdf0d21727769640bab85115081c92b9 (diff)
parenta8c6f29f3ee51ccfcce2e24ec352d9d48a34fc56 (diff)
downloadwallabag-d213219ec785db757dba455acd53480ab0d292fb.tar.gz
wallabag-d213219ec785db757dba455acd53480ab0d292fb.tar.zst
wallabag-d213219ec785db757dba455acd53480ab0d292fb.zip
Merge pull request #2570 from wallabag/add-creation-date
Added creation date on entries view
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.twig5
1 files changed, 4 insertions, 1 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
index 9f696d06..56442116 100644
--- 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
@@ -1,7 +1,10 @@
1<div class="card-action"> 1<div class="card-action">
2 <span class="reading-time grey-text"> 2 <span class="reading-time grey-text">
3 <i class="material-icons" title="{{ 'entry.list.reading_time'|trans }}">timer</i> 3 <i class="material-icons" title="{{ 'entry.list.reading_time'|trans }}">timer</i>
4 {{ entry.readingTime / app.user.config.readingSpeed|round }} min 4 {{ entry.readingTime / app.user.config.readingSpeed|round }} min&nbsp;
5
6 <i class="material-icons hide-on-med-and-down" title="{{ 'entry.view.created_at'|trans }}">today</i>
7 <span class="hide-on-med-and-down">&nbsp;{{ entry.createdAt|date('Y-m-d') }}</span>
5 </span> 8 </span>
6 9
7 <ul class="tools right"> 10 <ul class="tools right">