Add hour, minute and seconds to content dates

This commit is contained in:
jultty 2024-12-07 11:16:25 -03:00
commit c12feff7c6
8 changed files with 11 additions and 11 deletions

View file

@ -5,7 +5,7 @@
<ul id="posts">
{%- for page in section.pages %}
<li>
<time class="post-date">{{ page.date }}</time>
<time class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</time>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
</li>
{%- endfor %}