Just in case, if you want to create your own solution, you can write the Jekyll plugin to format the date as you want, for example (this is an example for Italian dates):
module Jekyll module ItalianDates MONTHS = {"01" => "gennaio", "02" => "febbraio", "03" => "marzo", "04" => "aprile", "05" => "maggio", "06" => "giugno", "07" => "luglio", "08" => "agosto", "09" => "settembre", "10" => "ottobre", "11" => "novembre", "12" => "dicembre"}
Just save this in a file like _plugins/italian_dates.rb and use it as you need in the templates:
<time datetime="{{page.date | html5date}}">{{page.date | italianDate}}</time>
lifeisfoo Sep 01 '15 at 12:37 2015-09-01 12:37
source share