From 9b40704c34685a45a465592a1802e4769e3f5eea Mon Sep 17 00:00:00 2001 From: Markus Steinlein <47111718+Ayreonaut@users.noreply.github.com> Date: Tue, 9 Mar 2021 11:47:09 +0100 Subject: [PATCH] Added title block for blog pages so that they are harmonized with other pages. --- templates/page.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/page.html b/templates/page.html index aeb627e..fa7fe63 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,7 +1,7 @@ {% extends "template.html" %} +{% block title %}{{ page.title }}{% endblock %} {% block content %} -

{{ page.title }}

{{page.html|safe }}


-  {{ page.author }} — {{ format_date_string(page.date) }} + {{ page.author }} — {{ format_date_string(page.date) }} {% endblock %}