From 29ff6d7b83a4e7966ca08e415d4234e1c0044334 Mon Sep 17 00:00:00 2001 From: kittywitch Date: Tue, 8 Jul 2025 18:52:13 +0000 Subject: [PATCH] deploy: 7d9d67bedee50875d372c8138ffa51b04266023c --- templates/base-page-title.html | 24 ++++++++++++++++++++++++ templates/base-section-title.html | 24 ++++++++++++++++++++++++ templates/blog.html | 2 +- templates/page.html | 2 +- 4 files changed, 50 insertions(+), 2 deletions(-) create mode 100644 templates/base-page-title.html create mode 100644 templates/base-section-title.html diff --git a/templates/base-page-title.html b/templates/base-page-title.html new file mode 100644 index 0000000..49f1fab --- /dev/null +++ b/templates/base-page-title.html @@ -0,0 +1,24 @@ + + + + + + {{ page.title }} - {{ config.extra.site_title }} + {% include "head.html" %} + + + +
+
+ {% include "header.html" %} +
+
+ {% block content %} {% endblock content %} +
+
+ {% include "footer.html" %} +
+
+ + + diff --git a/templates/base-section-title.html b/templates/base-section-title.html new file mode 100644 index 0000000..9695fca --- /dev/null +++ b/templates/base-section-title.html @@ -0,0 +1,24 @@ + + + + + + {{ section.title }} - {{ config.extra.site_title }} + {% include "head.html" %} + + + +
+
+ {% include "header.html" %} +
+
+ {% block content %} {% endblock content %} +
+
+ {% include "footer.html" %} +
+
+ + + diff --git a/templates/blog.html b/templates/blog.html index 90b3a03..3635866 100644 --- a/templates/blog.html +++ b/templates/blog.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "base-section-title.html" %} {% block content %}
diff --git a/templates/page.html b/templates/page.html index c127084..cfb5f0d 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "base-page-title.html" %} {% block content %}