I am trying out jekyll for website creation. I am using jekyll-bootstrap.
The default configuration has the page archive, where all the posts are listed grouped by year and month of the post date. Currently the months appear in English. I've looked at the code and this is an excerpt which is responsible for putting the date:
{% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
I've found a lot of information here, so there is a way to specify the desired locale. But how can you make jekyll respect it? Simply adding
default_locale: "lt"
in _config.yml
naturally does not work.