bingus-blog/templates/error.html

19 lines
467 B
HTML
Raw Normal View History

2024-04-18 04:05:38 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>error</title>
<link rel="stylesheet" href="/static/style.css" />
2024-08-03 10:19:35 +03:00
<link rel="stylesheet" href="/static/custom/style.css" />
<link rel="stylesheet" href="/static/custom/error.css" />
2024-04-18 04:05:38 +03:00
</head>
<body>
<main>
<h1>error</h1>
<p>{{ error }}</p>
<a href="/">go back to home</a>
</main>
</body>
</html>