website/templates/error.html

15 lines
293 B
HTML
Raw Normal View History

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