From d8aa625e5ff08e72100731233cac279e9362c78f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?iBug=20=E2=99=A6?= Date: Wed, 8 Jan 2020 01:38:08 +0800 Subject: [PATCH] Use %-d instead of %d (#2359) --- _includes/comment.html | 2 +- _layouts/single.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/comment.html b/_includes/comment.html index cebedab..2e3013e 100644 --- a/_includes/comment.html +++ b/_includes/comment.html @@ -13,7 +13,7 @@

{% if include.date %} {% if include.index %}{% endif %} {% endif %}

diff --git a/_layouts/single.html b/_layouts/single.html index e60b8dc..d799abe 100644 --- a/_layouts/single.html +++ b/_layouts/single.html @@ -52,9 +52,9 @@ layout: default {% endif %} {% include page__taxonomy.html %} {% if page.last_modified_at %} -

{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}

+

{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}

{% elsif page.date %} -

{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}

+

{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}

{% endif %} -- 2.43.0