Allow customizing post date format

Now you can set the format of the date used in the post in the config:

```toml
[extra]
post_date_format = "%Y-%m-%d"
```
This commit is contained in:
Andrew Borg 2025-01-13 14:33:09 +00:00
parent 7f630a4e31
commit 9989929679
No known key found for this signature in database
3 changed files with 7 additions and 1 deletions

View file

@ -26,7 +26,7 @@
{% macro date(page) %}
<span class="post-date">
{%- if page.date %}
{{ page.date | date(format="%Y-%m-%d") }}
{{ page.date | date(format=config.extra.post_date_format) }}
{% endif -%}
</span>
{% endmacro post_date %}