Skip to content

Instantly share code, notes, and snippets.

@semyonf
Last active May 3, 2017 11:29
Show Gist options
  • Save semyonf/5ecc273a6258836f26c3d16c000ac967 to your computer and use it in GitHub Desktop.
Save semyonf/5ecc273a6258836f26c3d16c000ac967 to your computer and use it in GitHub Desktop.
Плагин для русского формата даты Jekyll
module DateFilter
MONTHS = %w(Января Февраля Марта Апреля Мая Июня Июля Августа Сентября Октября Ноября Декабря)
def russian_long_month(input)
input.strftime("%-d") + " " + MONTHS[input.strftime("%m").to_i - 1] + " " + input.strftime("%Y")
end
end
Liquid::Template.register_filter(DateFilter)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment