mirror of https://github.com/wallabag/wallabag.git
Merge pull request #2570 from wallabag/add-creation-date
Added creation date on entries view
This commit is contained in:
commit
d213219ec7
|
@ -413,7 +413,8 @@ footer a {
|
|||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
.estimatedTime .reading-time {
|
||||
.reading-time,
|
||||
.created-at {
|
||||
color: #999;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
|
|
|
@ -644,10 +644,9 @@ a.original {
|
|||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#article aside .tools li {
|
||||
article aside .tools li {
|
||||
display: inline-flex;
|
||||
vertical-align: middle;
|
||||
margin: auto 10px;
|
||||
}
|
||||
|
||||
#article aside .tools a {
|
||||
|
|
|
@ -462,7 +462,7 @@ flashes:
|
|||
rss_token_updated: "Jeton RSS mis à jour"
|
||||
entry:
|
||||
notice:
|
||||
entry_already_saved: "Article déjà sauvergardé le %date%"
|
||||
entry_already_saved: "Article déjà sauvegardé le %date%"
|
||||
entry_saved: "Article enregistré"
|
||||
entry_saved_failed: "Article enregistré mais impossible de récupérer le contenu"
|
||||
entry_updated: "Article mis à jour"
|
||||
|
|
|
@ -34,6 +34,11 @@
|
|||
{{ 'entry.list.reading_time_less_one_minute'|trans|raw }}
|
||||
{% endif %}
|
||||
</span>
|
||||
<span class="tool created-at">
|
||||
<i class="tool icon icon-calendar" title="{{ 'entry.view.created_at'|trans }}">
|
||||
{{ entry.createdAt|date('Y-m-d') }}
|
||||
</i>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<ul class="tools links">
|
||||
|
|
|
@ -14,7 +14,9 @@
|
|||
<header class="w600p center mbm">
|
||||
<h1 class="logo">
|
||||
{% block logo %}
|
||||
<a title="{{ 'menu.left.back_to_unread'|trans }}" href="{{ path('unread') }}">
|
||||
<img width="100" height="100" src="{{ asset('bundles/wallabagcore/themes/_global/img/logo-w.png') }}" alt="wallabag logo" />
|
||||
</a>
|
||||
{% endblock %}
|
||||
</h1>
|
||||
</header>
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
<div class="card-action">
|
||||
<span class="reading-time grey-text">
|
||||
<i class="material-icons" title="{{ 'entry.list.reading_time'|trans }}">timer</i>
|
||||
{{ entry.readingTime / app.user.config.readingSpeed|round }} min
|
||||
{{ entry.readingTime / app.user.config.readingSpeed|round }} min
|
||||
|
||||
<i class="material-icons hide-on-med-and-down" title="{{ 'entry.view.created_at'|trans }}">today</i>
|
||||
<span class="hide-on-med-and-down"> {{ entry.createdAt|date('Y-m-d') }}</span>
|
||||
</span>
|
||||
|
||||
<ul class="tools right">
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue