aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-03-13 20:01:05 -0500
committerChristian Cleberg <hello@cleberg.net>2024-03-13 20:01:05 -0500
commitfc53183ec5dce2a4a00647dd4a8e0decfd6aa675 (patch)
treec9d352210a13a87bbbb47fcf89dbe4445bfbf8c4 /templates
parentdb35fba2ba952d12cd5040c6bc5c0660579c2130 (diff)
downloadcleberg.net-fc53183ec5dce2a4a00647dd4a8e0decfd6aa675.tar.gz
cleberg.net-fc53183ec5dce2a4a00647dd4a8e0decfd6aa675.tar.bz2
cleberg.net-fc53183ec5dce2a4a00647dd4a8e0decfd6aa675.zip
renovate wiki section
Diffstat (limited to 'templates')
-rw-r--r--templates/wiki.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/wiki.html b/templates/wiki.html
new file mode 100644
index 0000000..4f51239
--- /dev/null
+++ b/templates/wiki.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block content %}
+<h1>{{ section.title }}</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 page in section.pages %}
+ <div class="wiki-post">
+ <p><a href="/wiki/{{ page.slug }}/">{{ page.title }}</a></p>
+ <p>{{ page.updated }}</p>
+ </div>
+{% endfor %}
+{% endblock content %}