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;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.estimatedTime .reading-time {
|
.reading-time,
|
||||||
|
.created-at {
|
||||||
color: #999;
|
color: #999;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|
|
@ -644,10 +644,9 @@ a.original {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#article aside .tools li {
|
article aside .tools li {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: auto 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#article aside .tools a {
|
#article aside .tools a {
|
||||||
|
|
|
@ -462,7 +462,7 @@ flashes:
|
||||||
rss_token_updated: "Jeton RSS mis à jour"
|
rss_token_updated: "Jeton RSS mis à jour"
|
||||||
entry:
|
entry:
|
||||||
notice:
|
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: "Article enregistré"
|
||||||
entry_saved_failed: "Article enregistré mais impossible de récupérer le contenu"
|
entry_saved_failed: "Article enregistré mais impossible de récupérer le contenu"
|
||||||
entry_updated: "Article mis à jour"
|
entry_updated: "Article mis à jour"
|
||||||
|
|
|
@ -34,6 +34,11 @@
|
||||||
{{ 'entry.list.reading_time_less_one_minute'|trans|raw }}
|
{{ 'entry.list.reading_time_less_one_minute'|trans|raw }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</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>
|
</div>
|
||||||
|
|
||||||
<ul class="tools links">
|
<ul class="tools links">
|
||||||
|
|
|
@ -14,7 +14,9 @@
|
||||||
<header class="w600p center mbm">
|
<header class="w600p center mbm">
|
||||||
<h1 class="logo">
|
<h1 class="logo">
|
||||||
{% block logo %}
|
{% block logo %}
|
||||||
<img width="100" height="100" src="{{ asset('bundles/wallabagcore/themes/_global/img/logo-w.png') }}" alt="wallabag 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 %}
|
{% endblock %}
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
<div class="card-action">
|
<div class="card-action">
|
||||||
<span class="reading-time grey-text">
|
<span class="reading-time grey-text">
|
||||||
<i class="material-icons" title="{{ 'entry.list.reading_time'|trans }}">timer</i>
|
<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>
|
</span>
|
||||||
|
|
||||||
<ul class="tools right">
|
<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