From d4c106178b6aa0f488c74acc72fe0f2d8879a26c Mon Sep 17 00:00:00 2001 From: rivassec Date: Fri, 11 Sep 2026 17:33:07 -0700 Subject: [PATCH] theme: drop the visual article breadcrumb; absolute-URL the sidebar logo - The HOME | CATEGORY breadcrumb above article titles is removed by request; the BreadcrumbList JSON-LD stays, so crawlers keep the trail. - The sidebar logo img used a bare relative SITELOGO src, 404ing on any non-root page (category/author/tag); now SITEURL-prefixed. The logo and the RivasSec site-title both link to / (the title already did). --- themes/Flex/templates/article.html | 3 ++- themes/Flex/templates/partial/sidebar.html | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/themes/Flex/templates/article.html b/themes/Flex/templates/article.html index a3bcbef8..27d78f69 100644 --- a/themes/Flex/templates/article.html +++ b/themes/Flex/templates/article.html @@ -29,7 +29,8 @@ {% import 'partial/translations.html' as translations with context %} {{ translations.translations_for(article) }} {% endif %} - + {# Visual breadcrumb removed by request; the BreadcrumbList JSON-LD in + partial/jsonld_article.html still gives crawlers the trail. #}

{{ article.title }}

{{ _('Posted on %(when)s in %(category)s', diff --git a/themes/Flex/templates/partial/sidebar.html b/themes/Flex/templates/partial/sidebar.html index b929fd11..629b4089 100644 --- a/themes/Flex/templates/partial/sidebar.html +++ b/themes/Flex/templates/partial/sidebar.html @@ -2,7 +2,7 @@

{% if SITELOGO %} - {{ SITETITLE }} + {{ SITETITLE }} {% else %} {{ SITETITLE }} {% endif %}