From 2726baea2ec971bb4ee15291a0e031c7ddaa64b9 Mon Sep 17 00:00:00 2001 From: foswret Date: Fri, 14 Aug 2026 12:21:57 -0500 Subject: Update to Zola 0.23 Can not use {{ page.title }} in base.html for definition, so moved to more specific template files. Fix typo in style.css for <pre>, where text was black-on-black. --- templates/page.html | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'templates/page.html') diff --git a/templates/page.html b/templates/page.html index 88c852e..71bfee2 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,5 +1,9 @@ {% extends "base.html" %} +{% block title -%} +{{ section.title }} | {{ config.title }} +{%- endblock title %} + {% block content %} {{ section.content | safe }} {% endblock content %} -- cgit v1.2.3