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/page.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 templates/page.html (limited to 'templates/page.html') diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..32b1607 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% block title %}{{ page.title | lower }} · {{ config.title }}{% endblock title %} +{% block description %}{{ page.description | default(value=config.description) }}{% endblock description %} + +{% block content %} +

← back

+
+

{{ page.title }}

+ {% if page.description %}

{{ page.description }}

{% endif %} + {{ page.content | safe }} + {% if page.extra.link %} +

{{ page.extra.link_label | default(value="source") | lower }} →

+ {% endif %} +
+{% endblock content %} -- cgit v1.2.3