diff options
author | Nikolas <nikolas@boutalas.com> | 2024-10-28 12:38:54 +0200 |
---|---|---|
committer | Nikolas <nikolas@boutalas.com> | 2024-10-28 12:42:20 +0200 |
commit | f934df8bc8fd0c8d19436f1b51a61e1f3f6bd08e (patch) | |
tree | 30677619a682eb15b5d7117cd72244aefca9407a /templates/notes.html | |
parent | a28cecd8e11672148809a5cf6dadc4d18f0f2324 (diff) |
index: add notes section
Diffstat (limited to 'templates/notes.html')
-rw-r--r-- | templates/notes.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/notes.html b/templates/notes.html new file mode 100644 index 0000000..f49e822 --- /dev/null +++ b/templates/notes.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} {% block body %} +<h1>{{ section.title }}</h1> +<ul> + {% for page in section.pages %} + <li><a href="{{ page.permalink | safe }}">... {{ page.title }}</a> ({{ page.date }})</li> + {% endfor %} +</ul> +{% endblock body %} |