From 6fa27ead6330030ad8a13e97fcf3d6e82cb04c4b Mon Sep 17 00:00:00 2001 From: Josh Habdas Date: Tue, 28 Feb 2017 14:58:07 +0800 Subject: [PATCH] Use datetime for time element Currently metadata items are outputting a `time` element with a `datetime` attribute which is ISO 8601 compliant, but does not include information about time of day and timezone offset. This updates the output so it outputs all available information. Before: ```html ``` After ```html ``` References: http://devdocs.io/html/element/time for general info https://www.w3.org/TR/html51/infrastructure.html#dates-and-times for information about http://jekyll.tips/jekyll-cheat-sheet/ for liquid filter info --- _includes/_meta_information.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/_meta_information.html b/_includes/_meta_information.html index e9b6253e7f9..2bbb24ad281 100644 --- a/_includes/_meta_information.html +++ b/_includes/_meta_information.html @@ -9,7 +9,7 @@ {% endif %} {% if page.date %} - + {% endif %} {% if page.categories %} {{ page.categories | join: ' ยท ' | upcase }}{% endif %} @@ -28,4 +28,4 @@
{% endif %} - \ No newline at end of file +