From 6d3b8739287f8f1c89211b1c785342c2ce9050f5 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 1 Nov 2023 21:02:09 +0100 Subject: pokpok --- templates/page.html | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'templates/page.html') diff --git a/templates/page.html b/templates/page.html index 0e5679f..fa23b99 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,9 +1,14 @@ {% extends "base.html" %} -{% block content %} +{% block title %} +{{ page.title }} - {{ config.title }} +{% endblock %} -

{{ page.title }}

+{% block content %} -{{ page.content | safe }} +
+

{{ page.title }}

+ {{ page.content | safe }} +
{% endblock %} -- cgit