aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-04-05 22:22:16 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-04-05 22:22:52 +0200
commit5e9009ce86a366001616fad5b28cb59dc20ee4df (patch)
treefc4c88f3405d6f56a1fc27f9af43ab6be4117758 /src/Wallabag/CoreBundle/Resources/views/themes/baggy
parent19122cf66037f86375072ffa60b6a43b54f02f99 (diff)
downloadwallabag-5e9009ce86a366001616fad5b28cb59dc20ee4df.tar.gz
wallabag-5e9009ce86a366001616fad5b28cb59dc20ee4df.tar.zst
wallabag-5e9009ce86a366001616fad5b28cb59dc20ee4df.zip
Added publication date
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig
index 5d5e6dd8..8bc7b54c 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig
@@ -44,9 +44,15 @@
44 44
45 <div id="article-informations"> 45 <div id="article-informations">
46 <i class="tool icon icon-calendar" title="{{ 'entry.view.created_at'|trans }}"> 46 <i class="tool icon icon-calendar" title="{{ 'entry.view.created_at'|trans }}">
47 {{ entry.createdAt|date('Y-m-d') }} 47 {{ entry.createdAt|date('Y-m-d H:i') }}
48 </i> 48 </i>
49 49
50 {% if entry.publishedAt is not null %}
51 <i class="tool icon icon-pencil2" title="{{ 'entry.view.published_at'|trans }}">
52 {{ entry.publishedAt|date('Y-m-d H:i') }}
53 </i>
54 {% endif %}
55
50 <i class="tool icon icon-time"> 56 <i class="tool icon icon-time">
51 {% set readingTime = entry.readingTime / app.user.config.readingSpeed %} 57 {% set readingTime = entry.readingTime / app.user.config.readingSpeed %}
52 {% if readingTime > 0 %} 58 {% if readingTime > 0 %}