From fad99f4ca487939f57c5b9459e6b07cc65aa2a99 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Wed, 27 May 2026 22:52:20 -0400 Subject: [PATCH] fix: Add required ASF policy links to footer The footer links section was a TODO placeholder. This adds the standard ASF policy links (Foundation, Events, License, Security, Sponsorship, Thanks, Privacy) and trademark attribution. Checker: https://whimsy.apache.org/site/ --- docusaurus.config.ts | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 4d7fda2270..16f6cd7279 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -239,9 +239,41 @@ const config: Config = { footer: { style: 'dark', links: [ - // Footer links will be configured in WP2 + { + title: 'ASF', + items: [ + { + label: 'Foundation', + href: 'https://www.apache.org/', + }, + { + label: 'Events', + href: 'https://www.apache.org/events/current-event.html', + }, + { + label: 'License', + href: 'https://www.apache.org/licenses/', + }, + { + label: 'Security', + href: 'https://www.apache.org/security/', + }, + { + label: 'Sponsorship', + href: 'https://www.apache.org/foundation/sponsorship.html', + }, + { + label: 'Thanks', + href: 'https://www.apache.org/foundation/thanks.html', + }, + { + label: 'Privacy', + href: 'https://privacy.apache.org/policies/privacy-policy-public.html', + }, + ], + }, ], - copyright: `Copyright © ${new Date().getFullYear()} The Apache Software Foundation, Licensed under the Apache License, Version 2.0.`, + copyright: `Copyright © ${new Date().getFullYear()} The Apache Software Foundation, Licensed under the Apache License, Version 2.0. Apache Ignite, Ignite, Apache, the Apache logo, and the Apache Ignite project logo are either registered trademarks or trademarks of The Apache Software Foundation.`, }, prism: { theme: prismThemes.vsDark,