From 7d9d67bedee50875d372c8138ffa51b04266023c Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Tue, 8 Jul 2025 11:51:11 -0700 Subject: [PATCH] hmmm --- .../{base-title.html => base-page-title.html} | 0 templates/base-section-title.html | 24 +++++++++++++++++++ templates/blog.html | 2 +- templates/page.html | 2 +- 4 files changed, 26 insertions(+), 2 deletions(-) rename templates/{base-title.html => base-page-title.html} (100%) create mode 100644 templates/base-section-title.html diff --git a/templates/base-title.html b/templates/base-page-title.html similarity index 100% rename from templates/base-title.html rename to templates/base-page-title.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 ed9a640..cfb5f0d 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,4 +1,4 @@ -{% extends "base-title.html" %} +{% extends "base-page-title.html" %} {% block content %}