From 31aff186969a6e1da1d5d2f456a146643d4b99b1 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Tue, 7 May 2024 22:57:27 -0600 Subject: Improve date rendering --- _layouts/post.liquid | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '_layouts/post.liquid') diff --git a/_layouts/post.liquid b/_layouts/post.liquid index f4c4374..fa459bc 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -8,9 +8,13 @@

- {{ page.date | date: "%b %-d, %Y" }} - {{ page.title }} + {{ page.title }}

+

+ {% capture month%}{{ page.date | date: "%b" }}{% endcapture %} + {{ site.data[site.active_lang].strings.date[month]}} {{ page.date | date: "%d, %Y" }} +

{{ content }}
{% include navigation_buttons.liquid %} -- cgit v1.2.3