diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig | 5 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_actions.html.twig | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig index 0f1c010f..56a0faac 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig | |||
@@ -34,6 +34,11 @@ | |||
34 | {{ 'entry.list.reading_time_less_one_minute'|trans|raw }} | 34 | {{ 'entry.list.reading_time_less_one_minute'|trans|raw }} |
35 | {% endif %} | 35 | {% endif %} |
36 | </span> | 36 | </span> |
37 | <span class="tool created-at"> | ||
38 | <i class="tool icon icon-calendar" title="{{ 'entry.view.created_at'|trans }}"> | ||
39 | {{ entry.createdAt|date('Y-m-d') }} | ||
40 | </i> | ||
41 | </span> | ||
37 | </div> | 42 | </div> |
38 | 43 | ||
39 | <ul class="tools links"> | 44 | <ul class="tools links"> |
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..4a93fd8e 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 |
5 | |||
6 | <i class="material-icons" title="{{ 'entry.view.created_at'|trans }}">today</i> | ||
7 | {{ entry.createdAt|date('Y-m-d') }} | ||
5 | </span> | 8 | </span> |
6 | 9 | ||
7 | <ul class="tools right"> | 10 | <ul class="tools right"> |