From 5ab96de21c9244a6025f0ff68eb000caebe4197f Mon Sep 17 00:00:00 2001 From: Adam Lastowka Date: Thu, 13 Aug 2026 15:46:30 -0400 Subject: [PATCH 1/2] fix: correct broken guide links in theme definitions table Theme guide links used relative paths like ./addresses, resolving to dead links (e.g. /addresses) instead of the actual guide URLs under /guides/. Fixed all six theme guide links (Addresses, Base, Buildings, Divisions, Places, Transportation). Signed-off-by: Adam Lastowka --- static/theme-definitions-table.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/static/theme-definitions-table.html b/static/theme-definitions-table.html index 32e80d9c..4fdb48e9 100644 --- a/static/theme-definitions-table.html +++ b/static/theme-definitions-table.html @@ -131,7 +131,7 @@

Theme Definitions Table

const THEME_DATA = { "themes": { "Addresses": { - "guide": "./addresses", + "guide": "/guides/addresses/", "brief_description": "Unique geographic points representing a physical address location.", "licenses": [ { @@ -237,7 +237,7 @@

Theme Definitions Table

] }, "Base": { - "guide": "./base", + "guide": "/guides/base/", "brief_description": "Foundational layers such as land, water, infrastructure, and bathymetry.", "licenses": [ { @@ -333,7 +333,7 @@

Theme Definitions Table

] }, "Buildings": { - "guide": "./buildings", + "guide": "/guides/buildings/", "brief_description": "Permanent human-made structures with a roof.", "licenses": [ { @@ -473,7 +473,7 @@

Theme Definitions Table

] }, "Divisions": { - "guide": "./divisions", + "guide": "/guides/divisions/", "brief_description": "Recognized areas for governance, culture, or organization.", "licenses": [ { @@ -565,7 +565,7 @@

Theme Definitions Table

] }, "Places": { - "guide": "./places", + "guide": "/guides/places/", "brief_description": "Concrete, physically identifiable, stationary destinations.", "licenses": [ { @@ -693,7 +693,7 @@

Theme Definitions Table

] }, "Transportation": { - "guide": "./transportation", + "guide": "/guides/transportation/", "brief_description": "Traversable segments (roads, railways, ferries) and connectors (intersections), representing how people and objects travel.", "licenses": [ { From 192a47c3f34b5e1ff6e43f0a872ef47ae1662be5 Mon Sep 17 00:00:00 2001 From: Adam Lastowka Date: Thu, 13 Aug 2026 15:55:31 -0400 Subject: [PATCH 2/2] fix: use relative guide links instead of absolute Absolute paths (/guides/...) bypass the Docusaurus baseUrl and break under a non-root DOCUSAURUS_BASE_URL. Switch to relative paths (./guides/...) consistent with the existing back-link. Signed-off-by: Adam Lastowka --- static/theme-definitions-table.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/static/theme-definitions-table.html b/static/theme-definitions-table.html index 4fdb48e9..04f166bd 100644 --- a/static/theme-definitions-table.html +++ b/static/theme-definitions-table.html @@ -131,7 +131,7 @@

Theme Definitions Table

const THEME_DATA = { "themes": { "Addresses": { - "guide": "/guides/addresses/", + "guide": "./guides/addresses/", "brief_description": "Unique geographic points representing a physical address location.", "licenses": [ { @@ -237,7 +237,7 @@

Theme Definitions Table

] }, "Base": { - "guide": "/guides/base/", + "guide": "./guides/base/", "brief_description": "Foundational layers such as land, water, infrastructure, and bathymetry.", "licenses": [ { @@ -333,7 +333,7 @@

Theme Definitions Table

] }, "Buildings": { - "guide": "/guides/buildings/", + "guide": "./guides/buildings/", "brief_description": "Permanent human-made structures with a roof.", "licenses": [ { @@ -473,7 +473,7 @@

Theme Definitions Table

] }, "Divisions": { - "guide": "/guides/divisions/", + "guide": "./guides/divisions/", "brief_description": "Recognized areas for governance, culture, or organization.", "licenses": [ { @@ -565,7 +565,7 @@

Theme Definitions Table

] }, "Places": { - "guide": "/guides/places/", + "guide": "./guides/places/", "brief_description": "Concrete, physically identifiable, stationary destinations.", "licenses": [ { @@ -693,7 +693,7 @@

Theme Definitions Table

] }, "Transportation": { - "guide": "/guides/transportation/", + "guide": "./guides/transportation/", "brief_description": "Traversable segments (roads, railways, ferries) and connectors (intersections), representing how people and objects travel.", "licenses": [ {