diff options
author | 2020-03-02 16:45:03 -0800 | |
---|---|---|
committer | 2020-03-02 16:45:03 -0800 | |
commit | 26614a84e7bb577eccbf64a4828bc2d63c310131 (patch) | |
tree | 9d665a8aef13cf49039d97b6dd20512ecfaede77 /templates | |
parent | 083365d52e0b7c1bf001f4298ff78a02288622ba (diff) | |
download | sally-26614a84e7bb577eccbf64a4828bc2d63c310131.tar.gz sally-26614a84e7bb577eccbf64a4828bc2d63c310131.tar.zst sally-26614a84e7bb577eccbf64a4828bc2d63c310131.zip |
Fix godoc badge image (#43)
pkg.go.dev does not serve a badge like godoc.org. This change switches
the image over to one provided by shields.io.
Note that this uses the style "for-the-badge" from shields.io.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index d322ef6..50b6004 100644 --- a/templates/index.html +++ b/templates/index.html @@ -24,7 +24,7 @@ </td> <td> <a href="//{{ $.Godoc.Host }}/{{ $importPath }}"> - <img src="//{{ $.Godoc.Host }}/{{ $importPath }}?status.svg" alt="GoDoc" /> + <img src="//img.shields.io/badge/godoc-reference-blue?style=for-the-badge" alt="GoDoc" /> </a> </td> </tr> |