[x/go.dev] _content, _template: change menus and breadcrumbs to use relative URLs

This helps with running the site locally and will also help us clean
up the use of CurrentSection in the main site template (in a future CL).

Golden files adjusted to account for changed output.

Change-Id: I33937c02a31a4d26a8a71bd8c6398a2af21b7408
X-GoDev-Commit: 99a24c8f0d08a520f86e81adc75bf420cfdf242b
diff --git a/go.dev/_content/index.md b/go.dev/_content/index.md
index 1c87b8a..7731e85 100644
--- a/go.dev/_content/index.md
+++ b/go.dev/_content/index.md
@@ -37,7 +37,7 @@
       <div
         data-version=""
         class="js-latestGoVersion">
-        <a class="Primary" href="https://learn.go.dev/">Get Started</a>
+        <a class="Primary" href="/learn">Get Started</a>
         <a class="Secondary js-downloadBtn"
           href="https://golang.org/dl"
           target="_blank" rel="noopener"
@@ -267,7 +267,7 @@
         Explore a wealth of learning resources, including guided journeys, courses, books, and more.
       </p>
       <div class="GettingStartedGo-ctas">
-        <a class="GettingStartedGo-primaryCta" href="http://learn.go.dev">Get Started</a>
+        <a class="GettingStartedGo-primaryCta" href="/learn">Get Started</a>
         <a href="https://golang.org/dl" target="_blank" rel="noopener">Download Go</a>
       </div>
     </div>
diff --git a/go.dev/_content/menus.yaml b/go.dev/_content/menus.yaml
index e902090..bb53773 100644
--- a/go.dev/_content/menus.yaml
+++ b/go.dev/_content/menus.yaml
@@ -1,24 +1,24 @@
 main:
   - name: Why Go
-    url: https://go.dev/solutions
+    url: /solutions
   - name: Getting Started
-    url: https://learn.go.dev
+    url: /learn
   - name: Discover Packages
     url: https://pkg.go.dev
   - name: About
-    url: https://go.dev/about
+    url: /about
 
 footer:
   - name: Why Go
-    url: https://go.dev/solutions
+    url: /solutions
     children:
     - name: Use Cases
-      url: https://go.dev/solutions#use-cases
+      url: /solutions#use-cases
     - name: Case Studies
-      url: https://go.dev/solutions#case-studies
+      url: /solutions#case-studies
 
   - name: Getting Started
-    url: https://go.dev/learn
+    url: /learn
     children:
     - name: Playground
       url: https://play.golang.org
@@ -31,7 +31,7 @@
     url: https://pkg.go.dev
 
   - name: About
-    url: https://go.dev/about
+    url: /about
     children:
     - name: Download
       url: https://golang.org/dl/
diff --git a/go.dev/_templates/breadcrumbs.tmpl b/go.dev/_templates/breadcrumbs.tmpl
index 689dd12..6b2a7ff 100644
--- a/go.dev/_templates/breadcrumbs.tmpl
+++ b/go.dev/_templates/breadcrumbs.tmpl
@@ -4,7 +4,7 @@
 {{- end}}
 {{- if not (eq .p1.Title "go.dev")}}
       <li class="BreadcrumbNav-li {{if eq .p1 .p2}}active{{end}}">
-        <a class="BreadcrumbNav-link" href="{{.p1.Permalink}}">
+        <a class="BreadcrumbNav-link" href="{{.p1.RelPermalink}}">
           {{- if isset .p1.Params "company"}}
             {{.p1.Params.company}}
           {{- else}}
diff --git a/go.dev/testdata/golden/about/index.html b/go.dev/testdata/golden/about/index.html
index ff4da4b..fb0ebb2 100644
--- a/go.dev/testdata/golden/about/index.html
+++ b/go.dev/testdata/golden/about/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem  Header-menuItem--active">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -277,18 +277,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -296,7 +296,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -328,7 +328,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/categories/index.html b/go.dev/testdata/golden/categories/index.html
index 925f4f8..b0d3c07 100644
--- a/go.dev/testdata/golden/categories/index.html
+++ b/go.dev/testdata/golden/categories/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -125,18 +125,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -144,7 +144,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -176,7 +176,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/copyright/index.html b/go.dev/testdata/golden/copyright/index.html
index 2d1b707..5d4fc1a 100644
--- a/go.dev/testdata/golden/copyright/index.html
+++ b/go.dev/testdata/golden/copyright/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -127,18 +127,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -146,7 +146,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -178,7 +178,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/index.html b/go.dev/testdata/golden/index.html
index cbd474e..fbfa105 100644
--- a/go.dev/testdata/golden/index.html
+++ b/go.dev/testdata/golden/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -148,7 +148,7 @@
       <div
         data-version=""
         class="js-latestGoVersion">
-        <a class="Primary" href="https://learn.go.dev/">Get Started</a>
+        <a class="Primary" href="/learn">Get Started</a>
         <a class="Secondary js-downloadBtn"
           href="https://golang.org/dl"
           target="_blank" rel="noopener"
@@ -1274,7 +1274,7 @@
         Explore a wealth of learning resources, including guided journeys, courses, books, and more.
       </p>
       <div class="GettingStartedGo-ctas">
-        <a class="GettingStartedGo-primaryCta" href="http://learn.go.dev">Get Started</a>
+        <a class="GettingStartedGo-primaryCta" href="/learn">Get Started</a>
         <a href="https://golang.org/dl" target="_blank" rel="noopener">Download Go</a>
       </div>
     </div>
@@ -1368,18 +1368,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -1387,7 +1387,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -1419,7 +1419,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/learn/index.html b/go.dev/testdata/golden/learn/index.html
index 5af6f25..b841f16 100644
--- a/go.dev/testdata/golden/learn/index.html
+++ b/go.dev/testdata/golden/learn/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem  Header-menuItem--active">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -131,7 +131,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/learn/">
+        <a class="BreadcrumbNav-link" href="/learn/">
 
             Getting Started
 
@@ -1076,18 +1076,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -1095,7 +1095,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -1127,7 +1127,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/series/case-studies/index.html b/go.dev/testdata/golden/series/case-studies/index.html
index 6fd6805..0507ff0 100644
--- a/go.dev/testdata/golden/series/case-studies/index.html
+++ b/go.dev/testdata/golden/series/case-studies/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -117,7 +117,7 @@
     <ul class="Series-list">
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/paypal/">
+          <a href="/solutions/paypal/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">PayPal Taps Go to Modernize and Scale</h2>
               </div>
@@ -125,7 +125,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/americanexpress/">
+          <a href="/solutions/americanexpress/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">American Express Uses Go for Payments &amp; Rewards</h2>
               </div>
@@ -133,7 +133,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/mercadolibre/">
+          <a href="/solutions/mercadolibre/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">MercadoLibre Grows with Go</h2>
               </div>
@@ -141,7 +141,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/google/sitereliability/">
+          <a href="/solutions/google/sitereliability/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">Actuating Google Production: How Google’s Site Reliability Engineering Team Uses Go</h2>
               </div>
@@ -169,7 +169,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/google/chrome/">
+          <a href="/solutions/google/chrome/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">Chrome Content Optimization Service Runs on Go</h2>
               </div>
@@ -237,7 +237,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/google/coredata/">
+          <a href="/solutions/google/coredata/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">How Google&#39;s Core Data Solutions Team Uses Go</h2>
               </div>
@@ -255,7 +255,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/google/firebase/">
+          <a href="/solutions/google/firebase/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">How the Firebase Hosting Team Scaled With Go</h2>
               </div>
@@ -351,18 +351,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -370,7 +370,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -402,7 +402,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/series/index.html b/go.dev/testdata/golden/series/index.html
index ac2b006..6bff273 100644
--- a/go.dev/testdata/golden/series/index.html
+++ b/go.dev/testdata/golden/series/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -141,18 +141,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -160,7 +160,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -192,7 +192,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/series/use-cases/index.html b/go.dev/testdata/golden/series/use-cases/index.html
index 7d33322..00fc40e 100644
--- a/go.dev/testdata/golden/series/use-cases/index.html
+++ b/go.dev/testdata/golden/series/use-cases/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -117,7 +117,7 @@
     <ul class="Series-list">
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/cloud/">
+          <a href="/solutions/cloud/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">Go for Cloud &amp; Network Services</h2>
               <p class="Series-listItemSecondary">With a strong ecosystem of tools and APIs on major cloud providers, it is easier than ever to build services with Go.</p>
@@ -126,7 +126,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/clis/">
+          <a href="/solutions/clis/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">Command-line Interfaces (CLIs)</h2>
               <p class="Series-listItemSecondary">With popular open source packages and a robust standard library, use Go to create fast and elegant CLIs.</p>
@@ -135,7 +135,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/webdev/">
+          <a href="/solutions/webdev/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">Go for Web Development</h2>
               <p class="Series-listItemSecondary">With enhanced memory performance and support for several IDEs, Go powers fast and scalable web applications.</p>
@@ -144,7 +144,7 @@
         </li>
 
         <li class="Series-listItem">
-          <a href="https://go.dev/solutions/devops/">
+          <a href="/solutions/devops/">
             <div class="Series-listItemText">
               <h2 class="Series-listItemPrimary">Development Operations &amp; Site reliability Engineering</h2>
               <p class="Series-listItemSecondary">With fast build times, lean syntax, an automatic formatter and doc generator, Go is built to support both DevOps and SRE.</p>
@@ -161,18 +161,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -180,7 +180,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -212,7 +212,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/americanexpress/index.html b/go.dev/testdata/golden/solutions/americanexpress/index.html
index 5b546f8..aba20b5 100644
--- a/go.dev/testdata/golden/solutions/americanexpress/index.html
+++ b/go.dev/testdata/golden/solutions/americanexpress/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -134,7 +134,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -146,7 +146,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/americanexpress/">
+        <a class="BreadcrumbNav-link" href="/solutions/americanexpress/">
 
             American Express
 
@@ -288,18 +288,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -307,7 +307,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -339,7 +339,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/armut/index.html b/go.dev/testdata/golden/solutions/armut/index.html
index c41aa36..7c8eb7e 100644
--- a/go.dev/testdata/golden/solutions/armut/index.html
+++ b/go.dev/testdata/golden/solutions/armut/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/armut/">
+        <a class="BreadcrumbNav-link" href="/solutions/armut/">
 
             Armut
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/capital-one/index.html b/go.dev/testdata/golden/solutions/capital-one/index.html
index 0ecebdd..3ed521c 100644
--- a/go.dev/testdata/golden/solutions/capital-one/index.html
+++ b/go.dev/testdata/golden/solutions/capital-one/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/capital-one/">
+        <a class="BreadcrumbNav-link" href="/solutions/capital-one/">
 
             Capital One
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/clis/index.html b/go.dev/testdata/golden/solutions/clis/index.html
index 95ce424..530e5b9 100644
--- a/go.dev/testdata/golden/solutions/clis/index.html
+++ b/go.dev/testdata/golden/solutions/clis/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -110,16 +110,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -159,7 +159,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/clis/">
+        <a class="BreadcrumbNav-link" href="/solutions/clis/">
 
             Command-line Interfaces (CLIs)
 
@@ -590,18 +590,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -609,7 +609,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -641,7 +641,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/cloud/index.html b/go.dev/testdata/golden/solutions/cloud/index.html
index b751622..6f4fbc5 100644
--- a/go.dev/testdata/golden/solutions/cloud/index.html
+++ b/go.dev/testdata/golden/solutions/cloud/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -110,16 +110,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -159,7 +159,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/cloud/">
+        <a class="BreadcrumbNav-link" href="/solutions/cloud/">
 
             Go for Cloud &amp; Network Services
 
@@ -706,18 +706,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -725,7 +725,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -757,7 +757,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/cloudflare/index.html b/go.dev/testdata/golden/solutions/cloudflare/index.html
index b10aad3..ab1ac32 100644
--- a/go.dev/testdata/golden/solutions/cloudflare/index.html
+++ b/go.dev/testdata/golden/solutions/cloudflare/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/cloudflare/">
+        <a class="BreadcrumbNav-link" href="/solutions/cloudflare/">
 
             Cloudflare
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/cockroachlabs/index.html b/go.dev/testdata/golden/solutions/cockroachlabs/index.html
index a3973bf..7d1c844 100644
--- a/go.dev/testdata/golden/solutions/cockroachlabs/index.html
+++ b/go.dev/testdata/golden/solutions/cockroachlabs/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/cockroachlabs/">
+        <a class="BreadcrumbNav-link" href="/solutions/cockroachlabs/">
 
             Cockroach Labs
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/curve/index.html b/go.dev/testdata/golden/solutions/curve/index.html
index 027bbed..8f86ea4 100644
--- a/go.dev/testdata/golden/solutions/curve/index.html
+++ b/go.dev/testdata/golden/solutions/curve/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/curve/">
+        <a class="BreadcrumbNav-link" href="/solutions/curve/">
 
             Curve
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/devops/index.html b/go.dev/testdata/golden/solutions/devops/index.html
index edab5ec..1297e6c 100644
--- a/go.dev/testdata/golden/solutions/devops/index.html
+++ b/go.dev/testdata/golden/solutions/devops/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -110,16 +110,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -159,7 +159,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/devops/">
+        <a class="BreadcrumbNav-link" href="/solutions/devops/">
 
             Development Operations &amp; Site reliability Engineering
 
@@ -604,18 +604,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -623,7 +623,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -655,7 +655,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/dropbox/index.html b/go.dev/testdata/golden/solutions/dropbox/index.html
index c5fe844..a616c43 100644
--- a/go.dev/testdata/golden/solutions/dropbox/index.html
+++ b/go.dev/testdata/golden/solutions/dropbox/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/dropbox/">
+        <a class="BreadcrumbNav-link" href="/solutions/dropbox/">
 
             Dropbox
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/facebook/index.html b/go.dev/testdata/golden/solutions/facebook/index.html
index 723cffa..c6e276f 100644
--- a/go.dev/testdata/golden/solutions/facebook/index.html
+++ b/go.dev/testdata/golden/solutions/facebook/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/facebook/">
+        <a class="BreadcrumbNav-link" href="/solutions/facebook/">
 
             Facebook
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/google/chrome/index.html b/go.dev/testdata/golden/solutions/google/chrome/index.html
index 1adf4f3..084a7d9 100644
--- a/go.dev/testdata/golden/solutions/google/chrome/index.html
+++ b/go.dev/testdata/golden/solutions/google/chrome/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -136,7 +136,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -148,7 +148,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/">
 
             Google
 
@@ -160,7 +160,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/chrome/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/chrome/">
 
             Chrome
 
@@ -270,18 +270,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -289,7 +289,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -321,7 +321,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/google/coredata/index.html b/go.dev/testdata/golden/solutions/google/coredata/index.html
index 411f3cc..9757095 100644
--- a/go.dev/testdata/golden/solutions/google/coredata/index.html
+++ b/go.dev/testdata/golden/solutions/google/coredata/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -136,7 +136,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -148,7 +148,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/">
 
             Google
 
@@ -160,7 +160,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/coredata/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/coredata/">
 
             Core Data
 
@@ -298,18 +298,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -317,7 +317,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -349,7 +349,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/google/firebase/index.html b/go.dev/testdata/golden/solutions/google/firebase/index.html
index dabf14f..91e77da 100644
--- a/go.dev/testdata/golden/solutions/google/firebase/index.html
+++ b/go.dev/testdata/golden/solutions/google/firebase/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -136,7 +136,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -148,7 +148,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/">
 
             Google
 
@@ -160,7 +160,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/firebase/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/firebase/">
 
             Firebase
 
@@ -285,18 +285,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -304,7 +304,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -336,7 +336,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/google/index.html b/go.dev/testdata/golden/solutions/google/index.html
index ab752aa..c5ddf6d 100644
--- a/go.dev/testdata/golden/solutions/google/index.html
+++ b/go.dev/testdata/golden/solutions/google/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -134,7 +134,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -146,7 +146,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/">
 
             Google
 
@@ -273,18 +273,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -292,7 +292,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -324,7 +324,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/google/sitereliability/index.html b/go.dev/testdata/golden/solutions/google/sitereliability/index.html
index 9fafffc..fb6e83c 100644
--- a/go.dev/testdata/golden/solutions/google/sitereliability/index.html
+++ b/go.dev/testdata/golden/solutions/google/sitereliability/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -136,7 +136,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -148,7 +148,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/">
 
             Google
 
@@ -160,7 +160,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/google/sitereliability/">
+        <a class="BreadcrumbNav-link" href="/solutions/google/sitereliability/">
 
             Google Site Reliability Engineering (SRE)
 
@@ -321,18 +321,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -340,7 +340,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -372,7 +372,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/grail/index.html b/go.dev/testdata/golden/solutions/grail/index.html
index c4b1054..4635574 100644
--- a/go.dev/testdata/golden/solutions/grail/index.html
+++ b/go.dev/testdata/golden/solutions/grail/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/grail/">
+        <a class="BreadcrumbNav-link" href="/solutions/grail/">
 
             GRAIL
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/index.html b/go.dev/testdata/golden/solutions/index.html
index 83768af..afd2b4d 100644
--- a/go.dev/testdata/golden/solutions/index.html
+++ b/go.dev/testdata/golden/solutions/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem  Header-menuItem--active">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -977,18 +977,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -996,7 +996,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -1028,7 +1028,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/mercadolibre/index.html b/go.dev/testdata/golden/solutions/mercadolibre/index.html
index a27451f..35c099d 100644
--- a/go.dev/testdata/golden/solutions/mercadolibre/index.html
+++ b/go.dev/testdata/golden/solutions/mercadolibre/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -134,7 +134,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -146,7 +146,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/mercadolibre/">
+        <a class="BreadcrumbNav-link" href="/solutions/mercadolibre/">
 
             MercadoLibre
 
@@ -382,18 +382,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -401,7 +401,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -433,7 +433,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/microsoft/index.html b/go.dev/testdata/golden/solutions/microsoft/index.html
index dabd53b..87a724a 100644
--- a/go.dev/testdata/golden/solutions/microsoft/index.html
+++ b/go.dev/testdata/golden/solutions/microsoft/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/microsoft/">
+        <a class="BreadcrumbNav-link" href="/solutions/microsoft/">
 
             Microsoft
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/netflix/index.html b/go.dev/testdata/golden/solutions/netflix/index.html
index 24927a8..b2e20b5 100644
--- a/go.dev/testdata/golden/solutions/netflix/index.html
+++ b/go.dev/testdata/golden/solutions/netflix/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/netflix/">
+        <a class="BreadcrumbNav-link" href="/solutions/netflix/">
 
             Netflix
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/paypal/index.html b/go.dev/testdata/golden/solutions/paypal/index.html
index b01a79c..a09aec8 100644
--- a/go.dev/testdata/golden/solutions/paypal/index.html
+++ b/go.dev/testdata/golden/solutions/paypal/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -134,7 +134,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -146,7 +146,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/paypal/">
+        <a class="BreadcrumbNav-link" href="/solutions/paypal/">
 
             PayPal
 
@@ -293,18 +293,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -312,7 +312,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -344,7 +344,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/riotgames/index.html b/go.dev/testdata/golden/solutions/riotgames/index.html
index 151fabb..8730962 100644
--- a/go.dev/testdata/golden/solutions/riotgames/index.html
+++ b/go.dev/testdata/golden/solutions/riotgames/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/riotgames/">
+        <a class="BreadcrumbNav-link" href="/solutions/riotgames/">
 
             Riot Games
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/salesforce/index.html b/go.dev/testdata/golden/solutions/salesforce/index.html
index 1363c63..cbb37ce 100644
--- a/go.dev/testdata/golden/solutions/salesforce/index.html
+++ b/go.dev/testdata/golden/solutions/salesforce/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/salesforce/">
+        <a class="BreadcrumbNav-link" href="/solutions/salesforce/">
 
             Salesforce
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/target/index.html b/go.dev/testdata/golden/solutions/target/index.html
index 62e26d7..1cc6952 100644
--- a/go.dev/testdata/golden/solutions/target/index.html
+++ b/go.dev/testdata/golden/solutions/target/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/target/">
+        <a class="BreadcrumbNav-link" href="/solutions/target/">
 
             Target
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/twitch/index.html b/go.dev/testdata/golden/solutions/twitch/index.html
index 187fa84..de1cf8e 100644
--- a/go.dev/testdata/golden/solutions/twitch/index.html
+++ b/go.dev/testdata/golden/solutions/twitch/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/twitch/">
+        <a class="BreadcrumbNav-link" href="/solutions/twitch/">
 
             Twitch
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/twitter/index.html b/go.dev/testdata/golden/solutions/twitter/index.html
index a9ebec8..1779406 100644
--- a/go.dev/testdata/golden/solutions/twitter/index.html
+++ b/go.dev/testdata/golden/solutions/twitter/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/twitter/">
+        <a class="BreadcrumbNav-link" href="/solutions/twitter/">
 
             Twitter
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/uber/index.html b/go.dev/testdata/golden/solutions/uber/index.html
index 0ebfcf8..e9c00c7 100644
--- a/go.dev/testdata/golden/solutions/uber/index.html
+++ b/go.dev/testdata/golden/solutions/uber/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/uber/">
+        <a class="BreadcrumbNav-link" href="/solutions/uber/">
 
             Uber
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/webdev/index.html b/go.dev/testdata/golden/solutions/webdev/index.html
index 9ffa9b9..79611e5 100644
--- a/go.dev/testdata/golden/solutions/webdev/index.html
+++ b/go.dev/testdata/golden/solutions/webdev/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -110,16 +110,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -159,7 +159,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/webdev/">
+        <a class="BreadcrumbNav-link" href="/solutions/webdev/">
 
             Go for Web Development
 
@@ -677,18 +677,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -696,7 +696,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -728,7 +728,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/solutions/wildlifestudios/index.html b/go.dev/testdata/golden/solutions/wildlifestudios/index.html
index c5a3e8f..8fc6a29 100644
--- a/go.dev/testdata/golden/solutions/wildlifestudios/index.html
+++ b/go.dev/testdata/golden/solutions/wildlifestudios/index.html
@@ -70,16 +70,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -98,16 +98,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem  NavigationDrawer-listItem--active">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -135,7 +135,7 @@
 
 
       <li class="BreadcrumbNav-li ">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/">
+        <a class="BreadcrumbNav-link" href="/solutions/">
 
             Why Go
 
@@ -147,7 +147,7 @@
 
 
       <li class="BreadcrumbNav-li active">
-        <a class="BreadcrumbNav-link" href="https://go.dev/solutions/wildlifestudios/">
+        <a class="BreadcrumbNav-link" href="/solutions/wildlifestudios/">
 
             Wildlife Studios
 
@@ -200,18 +200,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -219,7 +219,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -251,7 +251,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/tags/index.html b/go.dev/testdata/golden/tags/index.html
index 087892a..f5bffce 100644
--- a/go.dev/testdata/golden/tags/index.html
+++ b/go.dev/testdata/golden/tags/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -125,18 +125,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -144,7 +144,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -176,7 +176,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>
 
diff --git a/go.dev/testdata/golden/tos/index.html b/go.dev/testdata/golden/tos/index.html
index 3e241d4..0485eb0 100644
--- a/go.dev/testdata/golden/tos/index.html
+++ b/go.dev/testdata/golden/tos/index.html
@@ -69,16 +69,16 @@
 
         <ul class="Header-menu">
           <li class="Header-menuItem ">
-            <a href="https://go.dev/solutions">Why Go</a>
+            <a href="/solutions">Why Go</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://learn.go.dev">Getting Started</a>
+            <a href="/learn">Getting Started</a>
           </li>
           <li class="Header-menuItem ">
             <a href="https://pkg.go.dev">Discover Packages</a>
           </li>
           <li class="Header-menuItem ">
-            <a href="https://go.dev/about">About</a>
+            <a href="/about">About</a>
           </li>
         </ul>
         <button class="Header-navOpen js-headerMenuButton Header-navOpen--white" aria-label="Open navigation.">
@@ -97,16 +97,16 @@
     </div>
     <ul class="NavigationDrawer-list">
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/solutions">Why Go</a>
+          <a href="/solutions">Why Go</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://learn.go.dev">Getting Started</a>
+          <a href="/learn">Getting Started</a>
         </li>
         <li class="NavigationDrawer-listItem ">
           <a href="https://pkg.go.dev">Discover Packages</a>
         </li>
         <li class="NavigationDrawer-listItem ">
-          <a href="https://go.dev/about">About</a>
+          <a href="/about">About</a>
         </li>
     </ul>
   </nav>
@@ -127,18 +127,18 @@
       <div class="Footer-links">
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/solutions" class="Footer-link Footer-link--primary">
+<a href="/solutions" class="Footer-link Footer-link--primary">
   Why Go
 </a>
 
 
-<a href="https://go.dev/solutions#use-cases" class="Footer-link">
+<a href="/solutions#use-cases" class="Footer-link">
   Use Cases
 </a>
 
 
 
-<a href="https://go.dev/solutions#case-studies" class="Footer-link">
+<a href="/solutions#case-studies" class="Footer-link">
   Case Studies
 </a>
 
@@ -146,7 +146,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/learn" class="Footer-link Footer-link--primary">
+<a href="/learn" class="Footer-link Footer-link--primary">
   Getting Started
 </a>
 
@@ -178,7 +178,7 @@
           </div>
           <div class="Footer-linkColumn">
 
-<a href="https://go.dev/about" class="Footer-link Footer-link--primary">
+<a href="/about" class="Footer-link Footer-link--primary">
   About
 </a>