34 lines
756 B
HTML
34 lines
756 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Redirecting</title>
|
|
<meta http-equiv="refresh" content="2; url=-" />
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
|
|
font-family: monospace;
|
|
font-size: 1.2rem;
|
|
|
|
display: grid;
|
|
justify-items: center;
|
|
align-content: center;
|
|
}
|
|
pre,
|
|
p {
|
|
width: max-content;
|
|
}
|
|
a {
|
|
color: inherit;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Redirecting to <a href="-">docs</a>.</p>
|
|
</body>
|
|
</html>
|