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
, where text was black-on-black.
---
templates/base.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
(limited to 'templates/base.html')
diff --git a/templates/base.html b/templates/base.html
index ac9e1af..3e17cdc 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -5,15 +5,15 @@
-
+
{% block rss %}
{% endblock %}
+
- {% if page.title %} {{ page.title }} | {{ config.title }}
- {% elif section.title %} {{ section.title }} | {{ config.title }}
- {% elif config.title %} {{ config.title }}
- {% else %} Post {% endif %}
+ {% block title -%}
+ {{ config.title }}
+ {%- endblock title %}
--
cgit v1.2.3