summaryrefslogtreecommitdiff
path: root/templates/page.html
diff options
context:
space:
mode:
authordevels <devels@tuta.com>2026-09-04 20:59:23 +0100
committerdevels <devels@tuta.com>2026-09-04 20:59:23 +0100
commitd45551a628cb51fed0dac9efe089aa223cabb196 (patch)
tree8224085dc93052367d2ca8ef5d0fe41b2bc21489 /templates/page.html
downloadsite-d45551a628cb51fed0dac9efe089aa223cabb196.tar.gz
site-d45551a628cb51fed0dac9efe089aa223cabb196.zip
initial commit
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html
new file mode 100644
index 0000000..7e1febd
--- /dev/null
+++ b/templates/page.html
@@ -0,0 +1,6 @@
+{% extends "base.html" %}
+{% block content %}
+ <h1>{{ page.title }}</h1>
+ <time>{{ page.date }}</time>
+ {{ page.content | safe }}
+{% endblock %}