aboutsummaryrefslogtreecommitdiff
path: root/templates/package.html
blob: 281368acf931b71026571befa0c1b25cd549f128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
    <head>
        <meta name="go-import" content="{{ .ModulePath }} {{ .VCS }} https://{{ .RepoURL }}">
        <meta http-equiv="refresh" content="0; url={{ .DocURL }}">
        <style>
            @media (prefers-color-scheme: dark) {
                body { background-color: #333; color: #ddd; }
                a { color: #ddd; }
                a:visited { color: #bbb; }
            }
        </style>
    </head>
    <body>
        Nothing to see here. Please <a href="{{ .DocURL }}">move along</a>.
    </body>
</html>