From 00533db3326506cfd6f4c882018262ee944518e8 Mon Sep 17 00:00:00 2001 From: "R.Vinu Rithika" Date: Wed, 12 Aug 2026 11:23:25 +0530 Subject: [PATCH] feat: add visible RSS/Atom feed links to navbar and footer (#176) Signed-off-by: R.Vinu Rithika --- docusaurus.config.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docusaurus.config.js b/docusaurus.config.js index 59945ac0..d6c49a9e 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -187,6 +187,13 @@ const config = { label: 'Events', }, { to: '/blog', label: 'Blog', position: 'right' }, + { + href: '/blog/rss.xml', + label: 'RSS', + position: 'right', + className: 'header-rss-link', + 'aria-label': 'Blog RSS feed', + }, ], }, footer: { @@ -235,6 +242,14 @@ const config = { label: 'GitHub', href: 'https://github.com/cncf/contribute-site', }, + { + label: 'RSS Feed', + href: '/blog/rss.xml', + }, + { + label: 'Atom Feed', + href: '/blog/atom.xml', + }, ], }, ], @@ -262,3 +277,5 @@ const config = { }; export default config; + +