mirror of
https://github.com/trafficlunar/statsys.git
synced 2026-03-28 11:13:17 +00:00
81 lines
1.7 KiB
HTML
81 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>error - {{ .Title }}</title>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
|
|
|
|
<style>
|
|
body {
|
|
background-color: #fcfcfc;
|
|
font-family: "Inter", sans-serif;
|
|
height: 100vh;
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
|
|
background-size: 48px 48px;
|
|
background-position: center;
|
|
pointer-events: none;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 24rem;
|
|
|
|
padding: 1rem 2rem;
|
|
background-color: white;
|
|
z-index: 1;
|
|
outline: 1px solid rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
span {
|
|
font-size: 4rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 0;
|
|
font-weight: 800;
|
|
}
|
|
|
|
p {
|
|
margin-top: 0.5rem;
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
background-color: black;
|
|
color: white;
|
|
padding: 0.05rem 0.2rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<span>(𖦹﹏𖦹;)</span>
|
|
|
|
<h1>error — trafficlunar</h1>
|
|
<p>{{ .Error }}</p>
|
|
</main>
|
|
</body>
|
|
</html>
|