hibiscus/pages/error/500.html
2024-10-07 16:04:39 +03:00

19 lines
No EOL
526 B
HTML

{{- define "500" -}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/public/favicon.ico">
<link rel="stylesheet" href="/public/main.css">
<title>Error 500</title>
</head>
<body>
<main>
<h1>Error 500 - Internal Server Error</h1>
<p>{{ translatableText "error.500" }}</p>
<p><a href="/">{{ translatableText "error.prompt" }}</a></p>
</main>
</body>
</html>
{{ end }}