20 lines
686 B
Plaintext
20 lines
686 B
Plaintext
<%#
|
|
503 error page: standalone (no app shell, no menu) so it renders even when the shell's data
|
|
is what failed. Locals: t/locale/dir come from the host with every render.
|
|
%><!doctype html>
|
|
<html lang="<%= locale %>" dir="<%= dir %>">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title><%= t("error.503.docTitle") %></title>
|
|
<link rel="stylesheet" href="/public/css/styles.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1><%= t("error.503.title") %></h1>
|
|
<p><%= t("error.503.body") %></p>
|
|
<p><a href="<%= localeHref("/login") %>"><%= t("error.tryAgain") %></a></p>
|
|
</main>
|
|
</body>
|
|
</html>
|