From c03e38b07ce439f9e6f4d23cb470193393e840e2 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 1 Aug 2026 23:56:19 -0500 Subject: initial commit --- templates/section.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 templates/section.html (limited to 'templates/section.html') diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..c3a9489 --- /dev/null +++ b/templates/section.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} + +{% block title %}{{ section.title | lower }} · {{ config.title }}{% endblock title %} +{% block description %}{{ section.description | default(value=config.description) }}{% endblock description %} + +{% block content %} +
+

{{ section.title }}

+ {{ section.content | safe }} +
+ +{% if section.pages %} + +{% endif %} +{% endblock content %} -- cgit v1.2.3