diff options
author | Nikolas <nikolas@boutalas.com> | 2024-11-16 18:58:12 +0000 |
---|---|---|
committer | Nikolas <nikolas@boutalas.com> | 2024-11-16 18:58:12 +0000 |
commit | 121e633a9bfd837088f34aec43b8b1b565dd5e9d (patch) | |
tree | 05bf231d293b52555f510b7a9295d288e590c2dc /templates/notes.html | |
parent | 58b34474c98244e19c554fad9461ea3989edcafa (diff) |
index: replace static content with markdown instead of html
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 %} |