aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/wiki.html
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-09-04 16:49:49 -0500
committerChristian Cleberg <[email protected]>2025-09-04 16:49:49 -0500
commit8ed9f60af1f1a3beca8f114db0175ce31f17822d (patch)
tree79502d636c2e363bec7fe6fd36934de646d09f69 /theme/templates/wiki.html
parent6e2e2844688e87c73e7840ff4b2989136ce247d4 (diff)
downloadcleberg.net-8ed9f60af1f1a3beca8f114db0175ce31f17822d.tar.gz
cleberg.net-8ed9f60af1f1a3beca8f114db0175ce31f17822d.tar.bz2
cleberg.net-8ed9f60af1f1a3beca8f114db0175ce31f17822d.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 %}