feat: show date in blog post list

This commit is contained in:
zaaarf 2023-12-23 01:31:43 +01:00
parent fb89a1755a
commit 4d4ec2b52e
No known key found for this signature in database
GPG key ID: 102E445F4C3F829B

View file

@ -13,9 +13,9 @@
<ul class="titleList"> <ul class="titleList">
{% for page in pages %} {% for page in pages %}
<li> <li>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a> <a href="{{ page.permalink | safe }}">{{ page.title }}<span class="postDate"> @ {{ page.date }}</span></a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>