aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/wiki.html
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-09-04 16:49:49 -0500
committerChristian Cleberg <hello@cleberg.net>2025-09-04 16:49:49 -0500
commit96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7 (patch)
tree79502d636c2e363bec7fe6fd36934de646d09f69 /theme/templates/wiki.html
parent8d53754c22fb4db81948d0147511723a87a1c8b7 (diff)
downloadcleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.gz
cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.bz2
cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.zip
shift from monospace theme to a formalized serif theme
Diffstat (limited to 'theme/templates/wiki.html')
-rw-r--r--theme/templates/wiki.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/templates/wiki.html b/theme/templates/wiki.html
index 6087b36..3bfc10e 100644
--- a/theme/templates/wiki.html
+++ b/theme/templates/wiki.html
@@ -4,9 +4,9 @@ main %}
<p>Use <code>Ctrl + F</code> to search wiki pages for keywords.</p>
{% for post in posts %}
<div class="post">
+ <a href='{{ url_for("wiki", slug=post.slug) }}'>{{ post.title }}</a>
<time datetime='{{ post.date | strftime("%Y-%m-%d") }}'
- >{{ post.date|strftime("%Y-%m-%d") }}</time
+ >{{ post.date|strftime("%B %d, %Y") }}</time
>
- <a href='{{ url_for("wiki", slug=post.slug) }}'>{{ post.title }}</a>
</div>
{% endfor %} {% endblock %}