mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-20 14:46:41 +00:00
Added creation date on entries view
This commit is contained in:
parent
d3511bbde9
commit
1c282b1da0
8 changed files with 39 additions and 30 deletions
|
@ -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,7 +644,7 @@ a.original {
|
|||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#article aside .tools li {
|
||||
.tools li {
|
||||
display: inline-flex;
|
||||
vertical-align: middle;
|
||||
margin: auto 10px;
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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" title="{{ 'entry.view.created_at'|trans }}">today</i>
|
||||
{{ entry.createdAt|date('Y-m-d') }}
|
||||
</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 a new issue