godoc: add alt attr to gopher on main package index

The gopher with a miner hat on /pkg had no alt attribute
so screen readers would announce the image by its filename.
As the image is purely decorative, adding the empty string
as alternative text prevents the image from being announced.

For golang/go#22171

Change-Id: Ib214f296d3d9f9084c44d4e33d1cbe432f2183ed
Reviewed-on: https://go-review.googlesource.com/69130
Reviewed-by: Ian Lance Taylor <iant@golang.org>
diff --git a/godoc/static/package.html b/godoc/static/package.html
index 1d2d1e3..4244a10 100644
--- a/godoc/static/package.html
+++ b/godoc/static/package.html
@@ -255,7 +255,7 @@
 			</dl>
 		</div>
 		<h2 id="stdlib">Standard library</h2>
-		<img class="gopher" src="/doc/gopher/pkg.png"/>
+		<img alt="" class="gopher" src="/doc/gopher/pkg.png"/>
 	{{end}}
 
 
diff --git a/godoc/static/static.go b/godoc/static/static.go
index 7a5618f..c3488f8 100644
--- a/godoc/static/static.go
+++ b/godoc/static/static.go
@@ -1908,7 +1908,7 @@
 			</dl>
 		</div>
 		<h2 id="stdlib">Standard library</h2>
-		<img class="gopher" src="/doc/gopher/pkg.png"/>
+		<img alt="" class="gopher" src="/doc/gopher/pkg.png"/>
 	{{end}}