From 8a4989224830213181e0cd38230db345b97b15f8 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 28 Oct 2015 21:56:35 -0700 Subject: [PATCH] Fix duplicate dates in articles --- source/_includes/blog/post/date.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_includes/blog/post/date.html b/source/_includes/blog/post/date.html index 34b93846492..247baa7526a 100644 --- a/source/_includes/blog/post/date.html +++ b/source/_includes/blog/post/date.html @@ -1,5 +1,5 @@ {% capture date %}{{ page.date }}{{ post.date }}{% endcapture %} -{% capture date_formatted %}{{ page.date_formatted }}{{ post.date_formatted }}{% endcapture %} +{% capture date_formatted %}{{ post.date_formatted }}{% endcapture %} {% capture has_date %}{{ date | size }}{% endcapture %} {% capture updated %}{{ page.updated }}{{ post.updated }}{% endcapture %}