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

@ -3,7 +3,7 @@
{% block content %}
<article class="blog-post">
<h1 id="post-title">{{ page.title }}</h1>
<time class="post-date">{{ page.date -}}</time>
<time class="post-date">{{ page.date | date(format="%Y-%m-%d %H:%M:%S") -}}</time>
{{ page.content | safe }}
</article>
{%- endblock content -%}