From 43f78d6c1e6598165b411151c9c536fe23709f04 Mon Sep 17 00:00:00 2001 From: Alex Oladele Date: Thu, 16 Oct 2025 14:23:51 -0400 Subject: [PATCH] Fix title display for all pages - Fix Index page to show just `Black Python Devs` instead of `Index | Black Python Devs` - Fix other pages to show proper ` | Black Python Devs` format --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index e856d3b..a36feb0 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -4,7 +4,7 @@ - {% if title %}{{ site.title }} | {{ title }}{% else %}{{ site.title }}{% endif %} + {% if title == 'Index' %}Black Python Devs{% elif title %}{{ title }} | Black Python Devs{% else %}Black Python Devs{% endif %}