anonstream/anonstream/templates/error.html

28 行
493 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ error.code }} {{ error.name }}</title>
<style>
body {
background-color: #18181a;
color: #ddd;
font-family: sans-serif;
font-size: 14pt;
margin: 24pt 16pt;
text-align: center;
text-shadow: 2px 0px 1px orangered;
}
h1 {
font-size: 32pt;
}
a {
color: #42a5d7;
}
</style>
</head>
<body>
<h1>{{ error.code }} {{ error.name }}</h1>
</body>
</html>