28 lines
1.3 KiB
Go
28 lines
1.3 KiB
Go
|
// Code generated by "jade.go"; DO NOT EDIT.
|
||
|
|
||
|
package web
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
nospace__0 = `<!DOCTYPE html><html lang="en"><head><title>Arav's dwelling / Upload</title><meta charset="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta name="theme-color" content="#cd2682"/><meta name="description" content="File upload service for ya."/><link rel="icon" href="/assets/img/favicon.svg" sizes="any" type="image/svg+xml"/><link href="/assets/css/main.css" rel="stylesheet"/></head></html><style type="text/css"> #error {
|
||
|
font-size: 3.5rem;
|
||
|
line-height: 5rem;
|
||
|
text-align: center;
|
||
|
margin: 6rem 0; }
|
||
|
|
||
|
#error h1 { font-size: 6rem; }</style><body><header><svg id="logo" viewBox="0 -25 216 40"><text class="logo">Arav's dwelling</text><text class="under" y="11">Welcome to my sacred place, wanderer</text></svg><nav><a href="`
|
||
|
nospace__1 = `" title="Arav's dwelling">Back to main website</a></nav></header></body><h1>:(</h1><section id="error"><h1>Not enough space left</h1></section><footer>2022 Arav <<a href="mailto:me@arav.top">me@arav.top</a>></footer>`
|
||
|
)
|
||
|
|
||
|
func ErrorNoSpace(mainSite string, wr io.Writer) {
|
||
|
buffer := &WriterAsBuffer{wr}
|
||
|
|
||
|
buffer.WriteString(nospace__0)
|
||
|
WriteEscString(mainSite, buffer)
|
||
|
buffer.WriteString(nospace__1)
|
||
|
|
||
|
}
|