From 8390bc9aade3a084d2e229a05c1374969d85ff43 Mon Sep 17 00:00:00 2001
From: Egor Tensin
Date: Mon, 8 Nov 2021 09:09:16 +0300
Subject: shorter dates in post headers
---
_includes/posts/posts.html | 2 +-
_layouts/post.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/_includes/posts/posts.html b/_includes/posts/posts.html
index c20ad69..94c5b01 100644
--- a/_includes/posts/posts.html
+++ b/_includes/posts/posts.html
@@ -12,7 +12,7 @@
{% if post.category %}
{{ post.category }}
{% endif %}
- {{ post.date | date: '%-d %B %Y' }}
+ {{ post.date | date: '%-d %b %Y' }}
diff --git a/_layouts/post.html b/_layouts/post.html
index 8ec7626..1d874d0 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -10,7 +10,7 @@ layout: default
{% if page.category %}
{{ page.category }}
{% endif %}
- {{ page.date | date: '%-d %B %Y' }}
+ {{ page.date | date: '%-d %b %Y' }}
--
cgit v1.2.3