fixed mistake in post list template

date for the post is now correctly displayed
This commit is contained in:
Daniel Fichtinger 2025-07-02 16:18:49 -04:00
parent 577976c741
commit c875adb18c

View file

@ -9,7 +9,7 @@
{% if post_list %}
<ul>
{% for item in post_list %}
<li><small><time datetime="{{ metadata.date | safe }}">{{ metadata.date | safe}}</time></small>: <a href="/{{ item.url }}">{{ item.metadata.title }}</a></li>
<li><small><time datetime="{{ item.metadata.date | safe }}">{{ item.metadata.date | safe}}</time></small>: <a href="/{{ item.url }}">{{ item.metadata.title }}</a></li>
{% endfor %}
</ul>
{% endif %}