aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-03-15 17:29:58 -0500
committerChristian Cleberg <[email protected]>2024-03-15 17:29:58 -0500
commit1579266a10407bb7b0eaf30b704ff0ce5a091baf (patch)
treeede4d26343e8e65906294ad6cf0da22bfbb21651
parentb0592033fefe07340b04cb21881efd2149c4cb33 (diff)
downloadcleberg.net-1579266a10407bb7b0eaf30b704ff0ce5a091baf.tar.gz
cleberg.net-1579266a10407bb7b0eaf30b704ff0ce5a091baf.tar.bz2
cleberg.net-1579266a10407bb7b0eaf30b704ff0ce5a091baf.zip
simplify date format on wiki page
-rw-r--r--templates/wiki.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/wiki.html b/templates/wiki.html
index 4f51239..a61d197 100644
--- a/templates/wiki.html
+++ b/templates/wiki.html
@@ -10,7 +10,7 @@
{% for page in section.pages %}
<div class="wiki-post">
<p><a href="/wiki/{{ page.slug }}/">{{ page.title }}</a></p>
- <p>{{ page.updated }}</p>
+ <time datetime="{{ page.updated | date(format='%Y-%m-%d %H:%M:%S') }}">{{ page.updated | date(format='%Y-%m-%d')}}</p>
</div>
{% endfor %}
{% endblock content %}