monofile/pages/error.html

36 lines
680 B
HTML
Raw Normal View History

2023-02-26 10:47:03 -08:00
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="/static/style/error.css"
>
<link
rel="icon"
2023-02-27 20:11:25 -08:00
type="image/svg"
href="/static/assets/icons/error.svg"
2023-02-26 10:47:03 -08:00
>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=0"
>
<title>$code</title>
2023-02-27 21:12:17 -08:00
<meta name="theme-color" content="rgb(30, 33, 36)">
2023-02-26 10:47:03 -08:00
</head>
<body>
<p class="error">
<span class="code">$code</span>
&nbsp;$text
</p>
</body>
2022-09-26 22:09:38 -07:00
</html>