blob: 3d8b8fd371edd1f0d1b7aa84eab7b649a90d1d78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "base.html" %}
{% block subtitle %}Wiki | {% endblock %}
{% block main %}
<h1>Wiki</h1>
<p>Use <code>Ctrl + F</code> to search wiki pages for keywords.</p>
<div class="wiki-post">
<p>Wiki Page</p>
<p>Last Updated</p>
</div>
{% for post in posts %}
<div class="wiki-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>
</div>
{% endfor %}
{% endblock %}
|