website/templates/error.html

15 lines
293 B
HTML
Raw Normal View History

2023-12-09 16:25:38 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>MatterLinux | Error</title>
2024-08-23 11:11:48 +00:00
{{template "parts/head" .}}
2024-05-05 18:22:45 +00:00
<link href="/error.css" rel="stylesheet">
2023-12-09 16:25:38 +00:00
</head>
<body>
2024-08-23 11:11:48 +00:00
<div class="error">
2023-12-09 16:25:38 +00:00
<h1>{{.msg}}</h1>
<a href="/">Go Back to Home</a>
</div>
</body>
</html>