_templates,testdata: remove package search from header

The updated designs for go.dev no longer contain package
search. Removing search from the header ahead of time to
simplify the process of making changes to search on
pkg.go.dev.

Change-Id: I49ee684641f7e80408a339ada28fe2727d549a91
Reviewed-on: https://go-review.googlesource.com/c/website/+/336909
Trust: Jamal Carvalho <jamal@golang.org>
Run-TryBot: Jamal Carvalho <jamal@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Julie Qiu <julie@golang.org>
diff --git a/go.dev/_templates/layouts/site.tmpl b/go.dev/_templates/layouts/site.tmpl
index 96b6af9..15367d2 100644
--- a/go.dev/_templates/layouts/site.tmpl
+++ b/go.dev/_templates/layouts/site.tmpl
@@ -56,7 +56,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-        {{template "search-form" .}}
         <ul class="Header-menu">
           {{- $currentPage := .}}
           {{- range $menus.main}}
@@ -173,20 +172,3 @@
 </footer>
 </body>
 </html>
-
-{{define "search-form"}}
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-{{end}}
diff --git a/go.dev/testdata/golden/about/index.html b/go.dev/testdata/golden/about/index.html
index 8ad2015..e0b134f 100644
--- a/go.dev/testdata/golden/about/index.html
+++ b/go.dev/testdata/golden/about/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/categories/index.html b/go.dev/testdata/golden/categories/index.html
index 4356588..77cb769 100644
--- a/go.dev/testdata/golden/categories/index.html
+++ b/go.dev/testdata/golden/categories/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/copyright/index.html b/go.dev/testdata/golden/copyright/index.html
index 8458ef1..79cdcda 100644
--- a/go.dev/testdata/golden/copyright/index.html
+++ b/go.dev/testdata/golden/copyright/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/index.html b/go.dev/testdata/golden/index.html
index ad213d6..de7f22e 100644
--- a/go.dev/testdata/golden/index.html
+++ b/go.dev/testdata/golden/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/learn/index.html b/go.dev/testdata/golden/learn/index.html
index 8c8146a..5678c08 100644
--- a/go.dev/testdata/golden/learn/index.html
+++ b/go.dev/testdata/golden/learn/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/series/case-studies/index.html b/go.dev/testdata/golden/series/case-studies/index.html
index 88443c0..f260d21 100644
--- a/go.dev/testdata/golden/series/case-studies/index.html
+++ b/go.dev/testdata/golden/series/case-studies/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/series/index.html b/go.dev/testdata/golden/series/index.html
index 74c4a87..d8cc1ec 100644
--- a/go.dev/testdata/golden/series/index.html
+++ b/go.dev/testdata/golden/series/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/series/use-cases/index.html b/go.dev/testdata/golden/series/use-cases/index.html
index 99a9324..f9631fc 100644
--- a/go.dev/testdata/golden/series/use-cases/index.html
+++ b/go.dev/testdata/golden/series/use-cases/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/americanexpress/index.html b/go.dev/testdata/golden/solutions/americanexpress/index.html
index 2eeaa15..2284b39 100644
--- a/go.dev/testdata/golden/solutions/americanexpress/index.html
+++ b/go.dev/testdata/golden/solutions/americanexpress/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/armut/index.html b/go.dev/testdata/golden/solutions/armut/index.html
index d4341d4..82a2d56 100644
--- a/go.dev/testdata/golden/solutions/armut/index.html
+++ b/go.dev/testdata/golden/solutions/armut/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/capital-one/index.html b/go.dev/testdata/golden/solutions/capital-one/index.html
index 80bb20c..603c895 100644
--- a/go.dev/testdata/golden/solutions/capital-one/index.html
+++ b/go.dev/testdata/golden/solutions/capital-one/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/clis/index.html b/go.dev/testdata/golden/solutions/clis/index.html
index 51c0548..d6abc3f 100644
--- a/go.dev/testdata/golden/solutions/clis/index.html
+++ b/go.dev/testdata/golden/solutions/clis/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/cloud/index.html b/go.dev/testdata/golden/solutions/cloud/index.html
index 9ee22c9..02275d9 100644
--- a/go.dev/testdata/golden/solutions/cloud/index.html
+++ b/go.dev/testdata/golden/solutions/cloud/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/cloudflare/index.html b/go.dev/testdata/golden/solutions/cloudflare/index.html
index bcbfd44..edce198 100644
--- a/go.dev/testdata/golden/solutions/cloudflare/index.html
+++ b/go.dev/testdata/golden/solutions/cloudflare/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/cockroachlabs/index.html b/go.dev/testdata/golden/solutions/cockroachlabs/index.html
index 17799fb..62e91ce 100644
--- a/go.dev/testdata/golden/solutions/cockroachlabs/index.html
+++ b/go.dev/testdata/golden/solutions/cockroachlabs/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/curve/index.html b/go.dev/testdata/golden/solutions/curve/index.html
index 4b52692..938d0b8 100644
--- a/go.dev/testdata/golden/solutions/curve/index.html
+++ b/go.dev/testdata/golden/solutions/curve/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/devops/index.html b/go.dev/testdata/golden/solutions/devops/index.html
index 8581c41..e405432 100644
--- a/go.dev/testdata/golden/solutions/devops/index.html
+++ b/go.dev/testdata/golden/solutions/devops/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/dropbox/index.html b/go.dev/testdata/golden/solutions/dropbox/index.html
index 7c4485e..8db193b 100644
--- a/go.dev/testdata/golden/solutions/dropbox/index.html
+++ b/go.dev/testdata/golden/solutions/dropbox/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/facebook/index.html b/go.dev/testdata/golden/solutions/facebook/index.html
index 2230e89..77f0796 100644
--- a/go.dev/testdata/golden/solutions/facebook/index.html
+++ b/go.dev/testdata/golden/solutions/facebook/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/google/chrome/index.html b/go.dev/testdata/golden/solutions/google/chrome/index.html
index 5164eda..b4a6a09 100644
--- a/go.dev/testdata/golden/solutions/google/chrome/index.html
+++ b/go.dev/testdata/golden/solutions/google/chrome/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/google/coredata/index.html b/go.dev/testdata/golden/solutions/google/coredata/index.html
index d195737..8f92899 100644
--- a/go.dev/testdata/golden/solutions/google/coredata/index.html
+++ b/go.dev/testdata/golden/solutions/google/coredata/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/google/firebase/index.html b/go.dev/testdata/golden/solutions/google/firebase/index.html
index ff0a0c8..da24b54 100644
--- a/go.dev/testdata/golden/solutions/google/firebase/index.html
+++ b/go.dev/testdata/golden/solutions/google/firebase/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/google/index.html b/go.dev/testdata/golden/solutions/google/index.html
index 698ee19..4bf3cf5 100644
--- a/go.dev/testdata/golden/solutions/google/index.html
+++ b/go.dev/testdata/golden/solutions/google/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/google/sitereliability/index.html b/go.dev/testdata/golden/solutions/google/sitereliability/index.html
index 0c87923..80a484d 100644
--- a/go.dev/testdata/golden/solutions/google/sitereliability/index.html
+++ b/go.dev/testdata/golden/solutions/google/sitereliability/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/grail/index.html b/go.dev/testdata/golden/solutions/grail/index.html
index 5c1d5a4..f46f64d 100644
--- a/go.dev/testdata/golden/solutions/grail/index.html
+++ b/go.dev/testdata/golden/solutions/grail/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/index.html b/go.dev/testdata/golden/solutions/index.html
index 131e378..0d96251 100644
--- a/go.dev/testdata/golden/solutions/index.html
+++ b/go.dev/testdata/golden/solutions/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem  Header-menuItem--active">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/mercadolibre/index.html b/go.dev/testdata/golden/solutions/mercadolibre/index.html
index 78e5287..a2b47a1 100644
--- a/go.dev/testdata/golden/solutions/mercadolibre/index.html
+++ b/go.dev/testdata/golden/solutions/mercadolibre/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/microsoft/index.html b/go.dev/testdata/golden/solutions/microsoft/index.html
index 2280b7d..4347d3e 100644
--- a/go.dev/testdata/golden/solutions/microsoft/index.html
+++ b/go.dev/testdata/golden/solutions/microsoft/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/netflix/index.html b/go.dev/testdata/golden/solutions/netflix/index.html
index 0ee1a8e..4f8632c 100644
--- a/go.dev/testdata/golden/solutions/netflix/index.html
+++ b/go.dev/testdata/golden/solutions/netflix/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/paypal/index.html b/go.dev/testdata/golden/solutions/paypal/index.html
index 3a35ebe..7e99ccd 100644
--- a/go.dev/testdata/golden/solutions/paypal/index.html
+++ b/go.dev/testdata/golden/solutions/paypal/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/riotgames/index.html b/go.dev/testdata/golden/solutions/riotgames/index.html
index 8121a66..703e927 100644
--- a/go.dev/testdata/golden/solutions/riotgames/index.html
+++ b/go.dev/testdata/golden/solutions/riotgames/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/salesforce/index.html b/go.dev/testdata/golden/solutions/salesforce/index.html
index 63a7c4b..ccb1396 100644
--- a/go.dev/testdata/golden/solutions/salesforce/index.html
+++ b/go.dev/testdata/golden/solutions/salesforce/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/target/index.html b/go.dev/testdata/golden/solutions/target/index.html
index 09d2595..16701a5 100644
--- a/go.dev/testdata/golden/solutions/target/index.html
+++ b/go.dev/testdata/golden/solutions/target/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/twitch/index.html b/go.dev/testdata/golden/solutions/twitch/index.html
index 2bf2734..bb423e5 100644
--- a/go.dev/testdata/golden/solutions/twitch/index.html
+++ b/go.dev/testdata/golden/solutions/twitch/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/twitter/index.html b/go.dev/testdata/golden/solutions/twitter/index.html
index ecac93d..b791f2a 100644
--- a/go.dev/testdata/golden/solutions/twitter/index.html
+++ b/go.dev/testdata/golden/solutions/twitter/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/uber/index.html b/go.dev/testdata/golden/solutions/uber/index.html
index f8f81d5..b6d37b7 100644
--- a/go.dev/testdata/golden/solutions/uber/index.html
+++ b/go.dev/testdata/golden/solutions/uber/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/webdev/index.html b/go.dev/testdata/golden/solutions/webdev/index.html
index cca1198..f5bc2d5 100644
--- a/go.dev/testdata/golden/solutions/webdev/index.html
+++ b/go.dev/testdata/golden/solutions/webdev/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/solutions/wildlifestudios/index.html b/go.dev/testdata/golden/solutions/wildlifestudios/index.html
index a398a1c..d2704e1 100644
--- a/go.dev/testdata/golden/solutions/wildlifestudios/index.html
+++ b/go.dev/testdata/golden/solutions/wildlifestudios/index.html
@@ -52,22 +52,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/tags/index.html b/go.dev/testdata/golden/tags/index.html
index 7c095b0..2b96512 100644
--- a/go.dev/testdata/golden/tags/index.html
+++ b/go.dev/testdata/golden/tags/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>
diff --git a/go.dev/testdata/golden/tos/index.html b/go.dev/testdata/golden/tos/index.html
index efd3940..568010a 100644
--- a/go.dev/testdata/golden/tos/index.html
+++ b/go.dev/testdata/golden/tos/index.html
@@ -51,22 +51,6 @@
           alt="Go">
       </a>
       <div class="Header-rightContent">
-
-<form
-  class="js-searchForm SearchForm" action="https://pkg.go.dev/search" role="search">
-  <button
-    class="js-searchFormSubmit SearchForm-submit"
-    aria-label="Search for a package">
-    <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.76 10.27L17.49 16L16 17.49L10.27 11.76C9.2 12.53 7.91 13 6.5 13C2.91 13 0 10.09 0 6.5C0 2.91 2.91 0 6.5 0C10.09 0 13 2.91 13 6.5C13 7.91 12.53 9.2 11.76 10.27ZM6.5 2C4.01 2 2 4.01 2 6.5C2 8.99 4.01 11 6.5 11C8.99 11 11 8.99 11 6.5C11 4.01 8.99 2 6.5 2Z">
-      </svg>
-  </button>
-  <input class="SearchForm-input" aria-label="Search for a package" type="text" name="q" size="1"
-         placeholder="Search for a package" autocapitalize="off" autocomplete="off" autocorrect="off"
-         spellcheck="false" title="Search for a package">
-        </input>
-</form>
-
         <ul class="Header-menu">
           <li class="Header-menuItem ">
             <a href="/solutions/">Why Go</a>