Last active
May 3, 2017 11:29
-
-
Save semyonf/5ecc273a6258836f26c3d16c000ac967 to your computer and use it in GitHub Desktop.
Плагин для русского формата даты Jekyll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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