diff options
| author | Jan T <jan@jantuomi.fi> | 2026-01-02 14:19:40 +0000 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2026-01-02 16:21:02 +0200 |
| commit | 6d7e34af89ef1038d213ff8ea325bb84d4a00d4a (patch) | |
| tree | 9f2a716794f3469e0af3c414556feeafa2219b40 /templates/section.html | |
Initial commit
Diffstat (limited to 'templates/section.html')
| -rw-r--r-- | templates/section.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..c9ed8b1 --- /dev/null +++ b/templates/section.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} {% block content %} + +<h1>{{ section.title }}</h1> +{% for page in section.pages %} +<ul> + <li><a href="{{ page.path }}">{{ page.title }}</a></li> +</ul> +{% endfor %} {% endblock %} |
