aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/posts
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2018-02-18 06:29:11 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2018-02-18 06:29:11 +0300
commit337b42d20d3c3eeedab3f7eb347bf91be335963c (patch)
tree277048efeef2b5f2c36a73a4aee48fd0a5780d74 /posts
parentbump dependencies (diff)
downloadsorting-algorithms-337b42d20d3c3eeedab3f7eb347bf91be335963c.tar.gz
sorting-algorithms-337b42d20d3c3eeedab3f7eb347bf91be335963c.zip
don't zero-pad day number in dates
Diffstat (limited to 'posts')
-rw-r--r--posts/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/posts/index.html b/posts/index.html
index fb91205..a18beb6 100644
--- a/posts/index.html
+++ b/posts/index.html
@@ -13,7 +13,7 @@ root_page: true
{% else %}
{% for post in paginator.posts %}
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
- <p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date_to_long_string }}</p>
+ <p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date: '%-d %B %Y' }}</p>
<p>{{ post.excerpt }}</p>
<hr/>
{% endfor %}