8235f4c7b5
See https://gist.github.com/chrismccord/2ab350f154235ad4a4d0f4de6decba7b#rename-your-htmleex-and-htmlleex-templates-to-htmlheex-optional Signed-off-by: Thomas Citharel <tcit@tcit.fr>
78 lines
2.5 KiB
Plaintext
78 lines
2.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang={"#{ @locale }"}>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><%= gettext "This page is not correct" %></title>
|
|
<style>
|
|
body.error {
|
|
font-family: BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, Segoe UI, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
background: #efeef4;
|
|
position: absolute;
|
|
color: #3c376e;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
}
|
|
|
|
body.error .dialog {
|
|
text-align: center;
|
|
}
|
|
|
|
body.error .dialog h1 {
|
|
font-size: 20px;
|
|
line-height: 28px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
body.error .dialog img {
|
|
display: block;
|
|
max-width: 470px;
|
|
width: 100%;
|
|
height: auto;
|
|
margin: -120px auto auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="error">
|
|
<main role="main" class="dialog">
|
|
<div class="error_illustration">
|
|
<img src="/img/mobilizon_logo.png" />
|
|
<!-- <img src="/img/error.png" alt="" width="500" /> -->
|
|
</div>
|
|
<div class="error__message">
|
|
<h1><%= gettext "We're sorry, but something went wrong on our end." %></h1>
|
|
<p>
|
|
<%= gettext("The Mobilizon server %{instance} seems to be temporarily down.", instance: "<b>#{@instance}</b>") |> raw %><br />
|
|
|
|
<%= if is_nil(@contact) do %>
|
|
<%= gettext("If the issue persists, you may try to contact the server administrator.") %>
|
|
<% else %>
|
|
<%= gettext("If the issue persists, you may contact the server administrator at %{contact}.", contact: cond do
|
|
String.contains?(@contact, "@") -> "<a href=\"mailto:#{@contact}\">#{@contact}</a>"
|
|
String.match?(@contact, ~r/^https?:\/\/.*/) -> "<a href=\"#{@contact}\">#{@contact}</a>"
|
|
true -> @contact
|
|
end) |> raw %>
|
|
<% end %>
|
|
</p>
|
|
</div>
|
|
</main>
|
|
<%= if length(@details) > 0 do %>
|
|
<details>
|
|
<summary style="font-size: 1.25rem;"><%= gettext("Technical details") %></summary>
|
|
<pre>
|
|
<%= for detail <- @details do %>
|
|
<%= detail %><br>
|
|
<% end %>
|
|
</pre>
|
|
</details>
|
|
<% end %>
|
|
</body>
|
|
</html>
|