From a7ff6e81163fb14be0b0f0d337f46e8acfc2fdd6 Mon Sep 17 00:00:00 2001 From: nathalie-ckc Date: Wed, 19 Aug 2026 09:21:21 -0700 Subject: [PATCH 1/3] Update WG page to remove extra links Now that we have the sub-pages, it's better to have all the resources listed on the subpages. Otherwise if some WGs have it at the top level WG page & others don't, it becomes confusing to a visitor. --- src/pages/working-groups/index.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/working-groups/index.astro b/src/pages/working-groups/index.astro index cde2ed9..6f74482 100644 --- a/src/pages/working-groups/index.astro +++ b/src/pages/working-groups/index.astro @@ -32,9 +32,9 @@ const data = [ icon: iconWindows, description: 'Targeting application layer support for Windows. From tooling to enablement and optimization of libraries on the Windows platform', - googlegroupname: 'windows-on-arm', +// googlegroupname: 'windows-on-arm', slug: 'windows-on-arm', - githubUrl: 'https://github.com/CoreCollective-dev/windows-on-arm-wg', +// githubUrl: 'https://github.com/CoreCollective-dev/windows-on-arm-wg', }, { title: 'Android', @@ -61,7 +61,7 @@ const data = [ icon: iconSOAFEE, description: 'Cloud native software development methodology for physical AI.', - archiveUrl: 'https://www.soafee.io', +// archiveUrl: 'https://www.soafee.io', }, { title: 'Technical Advisory Committee', From 809d8e98602fe570a279b3ff5c7d71c614a13faa Mon Sep 17 00:00:00 2001 From: nathalie-ckc Date: Thu, 20 Aug 2026 07:21:18 -0700 Subject: [PATCH 2/3] Update index.astro Use a different tag to ensure the title of the WG links to the SOAFEE website --- src/pages/working-groups/index.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/working-groups/index.astro b/src/pages/working-groups/index.astro index 6f74482..2d85861 100644 --- a/src/pages/working-groups/index.astro +++ b/src/pages/working-groups/index.astro @@ -61,6 +61,7 @@ const data = [ icon: iconSOAFEE, description: 'Cloud native software development methodology for physical AI.', + url: 'https://www.soafee.io' // archiveUrl: 'https://www.soafee.io', }, { From a441aca1e949743a1b19d1279fa2a65a0810ee01 Mon Sep 17 00:00:00 2001 From: nathalie-ckc Date: Thu, 20 Aug 2026 07:34:20 -0700 Subject: [PATCH 3/3] Update how titleUrl is generated So that the title will link out to the SOAFEE site --- src/pages/working-groups/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/working-groups/index.astro b/src/pages/working-groups/index.astro index 2d85861..944a057 100644 --- a/src/pages/working-groups/index.astro +++ b/src/pages/working-groups/index.astro @@ -102,7 +102,7 @@ const data = [ // If the WG has a dedicated sub-page (slug), link there. Otherwise fall back to GitHub or archive. const titleUrl = item.slug ? `/working-groups/${item.slug}/` - : (item.githubUrl || archiveUrl); + : (item.githubUrl || archiveUrl || item.url); const titleIsExternal = !item.slug; return (