aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-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 %}