2021-05-13 15:55:29 +02:00
|
|
|
<script lang="ts">
|
2021-05-27 15:26:19 +02:00
|
|
|
import {locals} from "../../ts/stores.js";
|
2021-11-20 22:55:25 +01:00
|
|
|
import FlashMessages from "../components/FlashMessages.svelte";
|
|
|
|
import Icon from "../utils/Icon.svelte";
|
2021-11-21 15:02:31 +01:00
|
|
|
import CommonScripts from "./CommonScripts.svelte";
|
2021-05-13 15:55:29 +02:00
|
|
|
|
|
|
|
const previousUrl = $locals.getPreviousUrl();
|
|
|
|
|
|
|
|
export let code;
|
|
|
|
code = $locals.error_code || code;
|
|
|
|
|
|
|
|
export let message;
|
|
|
|
message = $locals.error_message || message;
|
|
|
|
|
|
|
|
export let instructions;
|
|
|
|
instructions = $locals.error_instructions || instructions;
|
|
|
|
</script>
|
|
|
|
|
2021-11-21 15:02:31 +01:00
|
|
|
<CommonScripts/>
|
|
|
|
|
2021-05-13 15:55:29 +02:00
|
|
|
<svelte:head>
|
|
|
|
<title>{code + ' - ' + message}</title>
|
2021-11-20 22:55:25 +01:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="/css/layout.css">
|
2021-05-13 15:55:29 +02:00
|
|
|
</svelte:head>
|
|
|
|
|
|
|
|
<div class="logo"><a href="/">{$locals.app.name}</a></div>
|
|
|
|
|
|
|
|
<main>
|
2021-11-20 22:55:25 +01:00
|
|
|
<FlashMessages/>
|
2021-05-13 15:55:29 +02:00
|
|
|
|
|
|
|
<div class="error-code">{code}</div>
|
|
|
|
<div class="error-message">{message}</div>
|
|
|
|
{#if instructions}
|
|
|
|
<div class="error-instructions">{@html instructions}</div>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
{#if previousUrl && previousUrl !== '/' && previousUrl !== $locals.url}
|
2021-11-20 22:55:25 +01:00
|
|
|
<a href={previousUrl} class="button bold"><Icon name="arrow-left"/> Go back</a>
|
2021-05-13 15:55:29 +02:00
|
|
|
{/if}
|
|
|
|
|
2021-11-20 22:55:25 +01:00
|
|
|
<a href="/" class="button"><Icon name="home"/> Go to homepage</a>
|
2021-05-13 15:55:29 +02:00
|
|
|
</nav>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<div class="contact">
|
|
|
|
<p>Error ID: {$locals.error_id || 'Request has no indentifier.'}</p>
|
|
|
|
<p>
|
|
|
|
If you think this isn't right, please contact us with the above error ID at
|
|
|
|
<a href="mailto:{$locals.app.contact_email}">{$locals.app.contact_email}</a>.
|
|
|
|
</p>
|
|
|
|
</div>
|
2021-11-20 22:55:25 +01:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
header, footer {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.messages {
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-code {
|
|
|
|
font-size: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-instructions {
|
|
|
|
margin-top: 32px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "Oops";
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
|
|
|
|
font-size: #{'min(50vh, 40vw)'};
|
|
|
|
opacity: 0.025;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact {
|
|
|
|
text-align: center;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 24px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
position: relative;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
color: var(--on-background);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
background-image: url(../../img/logo.svg);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 64px;
|
|
|
|
|
|
|
|
opacity: 0.075;
|
|
|
|
filter: contrast(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|