grimoire/templates/err.html

19 lines
501 B
HTML
Raw Permalink Normal View History

2024-10-30 05:38:05 +00:00
{{ $params := (.Context).Value "params" }}
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='description' content='oops'/>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link rel='stylesheet' type='text/css' href='/static/style.css'>
<title>Grimoire &mdash; Error</title>
</head>
<body>
<header><h1>Error</h1></header>
<span class="error">{{$params.ErrorCode}}: {{$params.ErrorMessage}}</span>
</body>
</head>
</html>