website/templates/error.html

17 lines
384 B
HTML
Raw Normal View History

2023-12-09 16:25:38 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>MatterLinux | Error</title>
2023-12-09 16:25:38 +00:00
<meta charset="UTF-8">
<meta name="viewport" content="width=1200">
2024-05-05 18:22:45 +00:00
<link href="/global.css" rel="stylesheet">
<link href="/error.css" rel="stylesheet">
2023-12-09 16:25:38 +00:00
</head>
<body>
<div class="error">
<h1>{{.msg}}</h1>
<a href="/">Go Back to Home</a>
</div>
</body>
</html>