diff options
Diffstat (limited to 'theme/templates/wiki.html')
-rw-r--r-- | theme/templates/wiki.html | 4 |
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 %} |