download: Add notice about bugs in go command

This commit is contained in:
Matthew Holt 2023-03-10 10:11:16 -07:00
parent 6c6d933163
commit 5cee52a81c
2 changed files with 16 additions and 0 deletions

View file

@ -18,6 +18,10 @@
{{include "/includes/header-nav.html"}}
</header>
<div class="notice">
⚠️ <b>Due to <a href="https://github.com/golang/go/issues/56494">multiple</a> outstanding <a href="https://github.com/golang/go/issues/56494">bugs</a> in the <code>go</code> command, we are aware the some downloads may hang or fail.</b> In the meantime, you can download Caddy from <b><a href="https://github.com/caddyserver/caddy/releases">the latest release on GitHub</a></b>, or use <b><a href="https://github.com/caddyserver/xcaddy">xcaddy</a></b> for custom builds. (Remember, this download page comes with no guarantees or SLAs.) Sorry for the inconvenience.
</div>
<div class="download-bar">
<div>
<div>

View file

@ -2,6 +2,18 @@ body {
background-color: #f0f6f9;
}
.notice {
border: 1px solid hsl(42.1, 100%, 46.7%);
line-height: 1.5;
background: hsl(23.2, 100%, 93.9%);
border-radius: 5px;
padding: 1em 2em;
}
.notice code {
padding: 0
}
.download-bar {
display: flex;
justify-content: space-between;