From 3ec03eda3bdee87998824f55f0f69ad520437d86 Mon Sep 17 00:00:00 2001 From: rivassec Date: Fri, 11 Sep 2026 19:31:49 -0700 Subject: [PATCH] theme: drop Atom/RSS links from top nav (kept in footer) The two feed links moved out of the top navbar; they remain in the footer (partial/footer.html, with rel/type) and autodiscovery is unchanged. Top nav is now Home/About/Categories/Search/Tools/GitHub. --- themes/Flex/templates/partial/nav.html | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/themes/Flex/templates/partial/nav.html b/themes/Flex/templates/partial/nav.html index 74031eb2..079012ec 100644 --- a/themes/Flex/templates/partial/nav.html +++ b/themes/Flex/templates/partial/nav.html @@ -5,13 +5,7 @@ {% for title, link in MENUITEMS %} {{ _(title) }} {% endfor %} - - {% if FEED_ALL_ATOM %} - {{ _('Atom') }} - {% endif %} - - {% if FEED_ALL_RSS %} - {{ _('RSS') }} - {% endif %} + {# Atom/RSS links intentionally live only in the footer (partial/footer.html), + not the top nav. #} {% endif %}