Hello, in the blog section the month in which the post was made appears to be hardcoded before displaying the date/time as set in the config.
I already saw in Github that this was mentioned, but there was no solution for the problem.
Does anyone know how to solve this?
section form partials/blog_item.html.twig
<span class="posted-on">
<time class="entry-date published updated" datetime="{{ page.date|date(config.system.pages.dateformat.short) }}">{{ 'MONTHS_OF_THE_YEAR'|ta(page.date|date('n') - 1) }} {{ page.date|date(config.system.pages.dateformat.default) }}</time>
</span>