aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-03-13 23:51:50 -0500
committerChristian Cleberg <[email protected]>2024-03-13 23:51:50 -0500
commit20248dc0aa07cb395c3719cc6ca3750b159f4c0d (patch)
treef8ba53d8866030e1150c3cd80c0d57577889adb4 /templates/index.html
parentccbaa7a60d283a7647d08e4747d0ca0c9eb6b45b (diff)
downloadcleberg.net-20248dc0aa07cb395c3719cc6ca3750b159f4c0d.tar.gz
cleberg.net-20248dc0aa07cb395c3719cc6ca3750b159f4c0d.tar.bz2
cleberg.net-20248dc0aa07cb395c3719cc6ca3750b159f4c0d.zip
update date formatting
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html
index 8b86fe0..a100512 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -13,7 +13,7 @@
{% if i < 3%}
{% set_global i = i + 1%}
<div class="post">
- <time datetime="{{ page.date | date(format='%Y-%m-%d %H:%M:%S') }}">{{ page.date }}</time>
+ <time datetime="{{ page.date | date(format='%Y-%m-%d %H:%M:%S') }}">{{ page.date | date(format='%Y-%m-%d') }}</time>
<a href="/blog/{{ page.slug }}/">{{ page.title }}</a>
</div>
{% endif %}