File tree 4 files changed +10
-14
lines changed
4 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,12 @@ Features
8
8
9
9
* Don’t generate gallery index if the destination directory is
10
10
site root and it would conflict with blog index (Issue #3133)
11
- * All built-in themes now support updated timestamp fields in
11
+ * All built-in themes now support `` updated `` timestamp fields in
12
12
posts. The update time, if it is specified and different from
13
- the posting time will be displayed as
14
- "{postDate} ${messages("updated") {updateDate}". If no update
13
+ the posting time, will be displayed as
14
+ "{postDate} ( ${messages("updated")} {updateDate}) ". If no update
15
15
time is specified, the posting time will be displayed alone.
16
- * All built-in themes now support the ``DATE_FANCINESS ``
17
- parameter in ``conf.py ``.
16
+ * All built-in themes now support the ``DATE_FANCINESS `` option.
18
17
19
18
Bugfixes
20
19
--------
Original file line number Diff line number Diff line change 41
41
<a href="${post.permalink()}" rel="bookmark">
42
42
<time class="published dt-published" datetime="${post.formatted_date('webiso')}" itemprop="datePublished" title="${post.formatted_date(date_format)|h}">${post.formatted_date(date_format)|h}</time>
43
43
% if post.updated and post.updated != post.date:
44
- <span class="updated">${messages("updated")}
45
- <time class="dt-updated" datetime="${post.formatted_updated('webiso')}" itemprop="dateUpdated" title="${post.formatted_updated(date_format)|h}">${post.formatted_updated(date_format)|h}</time>
46
- </span>
44
+ <span class="updated">(${messages("updated")}
45
+ <time class="dt-updated" datetime="${post.formatted_updated('webiso')}" itemprop="dateUpdated" title="${post.formatted_updated(date_format)|h}">${post.formatted_updated(date_format)|h}</time>)</span>
47
46
% endif
48
47
</a>
49
48
</p>
Original file line number Diff line number Diff line change 42
42
<a href="${post.permalink()}" rel="bookmark">
43
43
<time class="published dt-published" datetime="${post.formatted_date('webiso')}" itemprop="datePublished" title="${post.formatted_date(date_format)|h}">${post.formatted_date(date_format)|h}</time>
44
44
% if post.updated and post.updated != post.date:
45
- <span class="updated">${messages("updated")}
46
- <time class="updated dt-updated" datetime="${post.formatted_updated('webiso')}" itemprop="dateUpdated" title="${post.formatted_updated(date_format)|h}">${post.formatted_updated(date_format)|h}</time>
47
- </span>
45
+ <span class="updated">(${messages("updated")}
46
+ <time class="updated dt-updated" datetime="${post.formatted_updated('webiso')}" itemprop="dateUpdated" title="${post.formatted_updated(date_format)|h}">${post.formatted_updated(date_format)|h}</time>)</span>
48
47
% endif
49
48
</a>
50
49
</p>
Original file line number Diff line number Diff line change 41
41
<a href="${post.permalink()}" rel="bookmark">
42
42
<time class="published dt-published" datetime="${post.formatted_date('webiso')}" itemprop="datePublished" title="${post.formatted_date(date_format)|h}">${post.formatted_date(date_format)|h}</time>
43
43
% if post.updated and post.updated != post.date:
44
- <span class="updated">${messages("updated")}
45
- <time class="dt-updated" datetime="${post.formatted_updated('webiso')}" itemprop="dateUpdated" title="${post.formatted_updated(date_format)|h}">${post.formatted_updated(date_format)|h}</time>
46
- </span>
44
+ <span class="updated">(${messages("updated")}
45
+ <time class="dt-updated" datetime="${post.formatted_updated('webiso')}" itemprop="dateUpdated" title="${post.formatted_updated(date_format)|h}">${post.formatted_updated(date_format)|h}</time>)</span>
47
46
% endif
48
47
</a>
49
48
</p>
You can’t perform that action at this time.
0 commit comments