Skip to content

Commit f48fec9

Browse files
committedAug 10, 2018
Add parentheses around (updated)
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent a39aec3 commit f48fec9

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed
 

‎CHANGES.txt

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ Features
88

99
* Don’t generate gallery index if the destination directory is
1010
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
1212
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
1515
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.
1817

1918
Bugfixes
2019
--------

‎nikola/data/themes/base/templates/index.tmpl

+2-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@
4141
<a href="${post.permalink()}" rel="bookmark">
4242
<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>
4343
% 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>
4746
% endif
4847
</a>
4948
</p>

‎nikola/data/themes/base/templates/post_header.tmpl

+2-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@
4242
<a href="${post.permalink()}" rel="bookmark">
4343
<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>
4444
% 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>
4847
% endif
4948
</a>
5049
</p>

‎nikola/data/themes/bootblog4/templates/index.tmpl

+2-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@
4141
<a href="${post.permalink()}" rel="bookmark">
4242
<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>
4343
% 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>
4746
% endif
4847
</a>
4948
</p>

0 commit comments

Comments
 (0)