diff options
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 %} |
