Since I've pinpointed the exact code that causes this, I will skip supplying debugging info.
The code <time itemprop="dateCreated" datetime="{{ article.date.isoformat() }}">{{ article.date.strftime('%b') }} {{ day }} {{- article.date.strftime(', %Y') }}</time> on line 118 of article.html hardcodes the date format when displaying an article. I think this should be changed to allow the end user to customize this format via pelicanconf.py, e.g. by adding a BRIEF_DATE_FORMAT option. Thoughts?
Since I've pinpointed the exact code that causes this, I will skip supplying debugging info.
The code
<time itemprop="dateCreated" datetime="{{ article.date.isoformat() }}">{{ article.date.strftime('%b') }} {{ day }} {{- article.date.strftime(', %Y') }}</time>on line 118 ofarticle.htmlhardcodes the date format when displaying an article. I think this should be changed to allow the end user to customize this format viapelicanconf.py, e.g. by adding aBRIEF_DATE_FORMAToption. Thoughts?